diff --git a/src/pages/blogroll.astro b/src/pages/blogroll.astro index 2c919c0..94a4d99 100644 --- a/src/pages/blogroll.astro +++ b/src/pages/blogroll.astro @@ -1,16 +1,9 @@ --- import Layout from "@layouts/Layout.astro"; -import icons from "@cdransf/astro-tabler-icons"; import { fetchBlogroll } from "@utils/data/blogroll.js"; export const prerender = true; -const { - IconRss, - IconJson, - IconMailPlus, - IconBrandMastodon, -} = icons; const blogroll = await fetchBlogroll(); const title = "Blogroll"; const description = @@ -24,10 +17,8 @@ const description = >

{title}

- You can download an OPML file containing all of these feeds and import them into your RSS reader. + You can download an OPML file containing all of + these feeds and import them into your RSS reader.

@@ -45,43 +36,44 @@ const description = - ))
{blog.url.replace("https://", "")} - {blog.rss_feed && ( - -
- - )} - {blog.json_feed && ( - -
- - )} - {blog.newsletter && ( - -
- - )} - {blog.mastodon && ( - -
- - )} +
+ {[ + blog.rss_feed && ( + RSS + ), + blog.json_feed && ( + JSON + ), + blog.newsletter && ( + Newsletter + ), + blog.mastodon && ( + Mastodon + ), + ] + .filter(Boolean) + .map((link, index, array) => ( + <> + {link} + {index < array.length - 1 && " / "} + + ))}