--- export const prerender = false; import PageLayout from "@/layouts/Base.astro"; const meta = { title: "/blogroll", description: "A collection of RSS feeds I'm subscribed to", }; // Fetch the feeds data const response = await fetch("https://feeds.stevedylan.dev/api/subscriptions"); const data = await response.json(); // Sort subscriptions by title const sortedFeeds = data.subscriptions.sort((a, b) => a.title.localeCompare(b.title), ); ---

/blogroll

Help build a blog network with me! Check out some of the people I follow below, and if you end up following them too, create a /blogroll page of your own with your list of people!

Links

API

I'm currently using my own RSS aggregator and reader called Feeds to manage my feeds, which inlcudes an API to programmatically share them as a list.

# JSON
curl https://feeds.stevedylan.dev/feeds?format=json

# OPML File
curl https://feeds.stevedylan.dev/feeds?format=opml -o feed.opml