From 59eeadd4b3a5052d3ccea0a54ac5651125ebae02 Mon Sep 17 00:00:00 2001 From: Max Richter Date: Sun, 23 Feb 2025 14:31:14 +0100 Subject: [PATCH] feat: add icons to posts and photos to featured posts --- src/components/SmallCard.astro | 8 +++++++- src/content/photos/erasmus-valencia/index.en.mdx | 3 +++ src/content/photos/erasmus-valencia/index.mdx | 2 ++ src/content/photos/madeira-2025/index.en.mdx | 2 ++ src/content/photos/madeira-2025/index.mdx | 2 ++ .../photos/peaks-of-the-balkans/index.en.mdx | 2 ++ .../photos/peaks-of-the-balkans/index.mdx | 2 ++ src/pages/index.astro | 16 ++++++++++++++-- 8 files changed, 34 insertions(+), 3 deletions(-) diff --git a/src/components/SmallCard.astro b/src/components/SmallCard.astro index 219fdcc..e4a44f4 100644 --- a/src/components/SmallCard.astro +++ b/src/components/SmallCard.astro @@ -21,7 +21,13 @@ const { post } = Astro.props;

- {post.data.icon && } + { + post.data.icon?.length > 3 ? ( + + ) : post.data.icon?.length ? ( + {post.data.icon} + ) : null + } {post.data.title}

diff --git a/src/content/photos/erasmus-valencia/index.en.mdx b/src/content/photos/erasmus-valencia/index.en.mdx index eec816d..8a0647f 100644 --- a/src/content/photos/erasmus-valencia/index.en.mdx +++ b/src/content/photos/erasmus-valencia/index.en.mdx @@ -2,6 +2,9 @@ title: "Erasmus Valencia" date: 2022-09-02 cover: ./images/MAX_8218 - MAX_8230.jpg +toc: true +icon: 🍊 +tags: ["valencia", "erasmus"] --- import Image from "@components/Image.astro" diff --git a/src/content/photos/erasmus-valencia/index.mdx b/src/content/photos/erasmus-valencia/index.mdx index a0707d5..8fedf65 100644 --- a/src/content/photos/erasmus-valencia/index.mdx +++ b/src/content/photos/erasmus-valencia/index.mdx @@ -3,6 +3,8 @@ title: "Erasmus Valencia" date: 2022-09-02 cover: ./images/MAX_8218 - MAX_8230.jpg toc: true +icon: 🍊 +tags: ["valencia", "erasmus"] --- import Image from "@components/Image.astro" diff --git a/src/content/photos/madeira-2025/index.en.mdx b/src/content/photos/madeira-2025/index.en.mdx index 048c717..f175a04 100644 --- a/src/content/photos/madeira-2025/index.en.mdx +++ b/src/content/photos/madeira-2025/index.en.mdx @@ -3,7 +3,9 @@ title: Madeira date: 2025-02-16 license: "CC-BY-SA:4.0" comments: true +icon: 🏝️ cover: ./images/MAX_0603.jpg +tags: ["madeira", "travel"] --- import Image from "@components/Image.astro"; diff --git a/src/content/photos/madeira-2025/index.mdx b/src/content/photos/madeira-2025/index.mdx index 6b178e4..6dd9972 100644 --- a/src/content/photos/madeira-2025/index.mdx +++ b/src/content/photos/madeira-2025/index.mdx @@ -3,7 +3,9 @@ title: Madeira date: 2025-02-16 license: "CC-BY-SA:4.0" comments: true +icon: 🏝️ cover: ./images/MAX_0603.jpg +tags: ["madeira", "travel"] --- import Image from "@components/Image.astro"; diff --git a/src/content/photos/peaks-of-the-balkans/index.en.mdx b/src/content/photos/peaks-of-the-balkans/index.en.mdx index 2a4ac63..b37b863 100644 --- a/src/content/photos/peaks-of-the-balkans/index.en.mdx +++ b/src/content/photos/peaks-of-the-balkans/index.en.mdx @@ -3,6 +3,8 @@ title: "Peaks of the Balkans" date: 2024-06-19 cover: ./images/MAX_9861.jpg license: "CC-BY-SA:4.0" +icon: 🏔️ +tags: ["balkans", "travel"] comments: true --- diff --git a/src/content/photos/peaks-of-the-balkans/index.mdx b/src/content/photos/peaks-of-the-balkans/index.mdx index 14efd3e..cf40485 100644 --- a/src/content/photos/peaks-of-the-balkans/index.mdx +++ b/src/content/photos/peaks-of-the-balkans/index.mdx @@ -3,6 +3,8 @@ title: "Peaks of the Balkans" date: 2024-06-19 cover: ./images/MAX_9861.jpg license: "CC-BY-SA:4.0" +icon: 🏔️ +tags: ["balkans", "hiking", "travel"] comments: true --- diff --git a/src/pages/index.astro b/src/pages/index.astro index dc42237..9cec2ad 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -33,9 +33,21 @@ const posts = filterCollection( await getCollection("blog"), getLocale(Astro.url), ); +const photos = filterCollection( + await getCollection("photos"), + getLocale(Astro.url), +); +const list = [...posts, ...photos]; +list.sort((a, b) => { + return a.data.date > b.data.date ? -1 : 1; +}); +// .sort((a, b) => { +// return a.data.date.getDate() > b.data.date.getDate() ? 1 : -1; +// }); +console.log(list.map((post) => [post.data.date, post.data.title])); -const featuredPost = posts.find((post) => post.data?.featured); -const otherPosts = posts.filter((post) => featuredPost !== post).slice(0, 3); +const featuredPost = list.find((post) => post.data?.featured); +const otherPosts = list.filter((post) => featuredPost !== post).slice(0, 3); ---