diff --git a/.eleventy.js b/.eleventy.js index dbfcac1..286fdb2 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -57,6 +57,13 @@ module.exports = function (eleventyConfig) { }); }); + // CLQMS collection sorted by order + eleventyConfig.addCollection("clqms", function (collectionApi) { + return collectionApi.getFilteredByTag("clqms").sort((a, b) => { + return (Number(a.data.order) || 99) - (Number(b.data.order) || 99); + }); + }); + return { dir: { input: "src", diff --git a/src/_layouts/base.njk b/src/_layouts/base.njk index 3565764..4286d5c 100644 --- a/src/_layouts/base.njk +++ b/src/_layouts/base.njk @@ -3,11 +3,11 @@ - + - + {{ title | default("5Panda") }} @@ -21,12 +21,12 @@ - diff --git a/src/team.njk b/src/team.njk new file mode 100644 index 0000000..97dbf14 --- /dev/null +++ b/src/team.njk @@ -0,0 +1,81 @@ +--- +layout: base.njk +title: The 5Panda Team +description: Meet the innovative minds behind 5Panda. +--- + +
+
+

Meet the + Squad +

+

The pandas building the future.

+
+ +
+
+
+
+
+
+ +
+
+ 5Panda Team: Alam, Haris, Bambang, Irham, Zaka +
+
+ +
+ +
+
+

🤓 Alam

+
UI/UX & Supervisor
+

The visionary with the glasses. Guiding the team and crafting perfect user + experiences.

+
+
+ +
+
+

🎧 Haris

+
The Vibecoder
+

Writing code that hits differently. Bringing the good vibes to the dev cycle.

+
+
+ +
+
+

🔍 Bambang

+
UI/UX & Tester
+

Quality assurance expert. Ensuring every pixel and interaction is flawless.

+
+
+ +
+
+

🕶️ Irham

+
Frontend Dev
+

Bringing designs to life with code. Always rocking the glasses.

+
+
+ +
+
+

👓 Zaka

+
Junior Backend Dev
+

Building the engine room. Young talent with a focus on server-side logic.

+
+
+
+
\ No newline at end of file