Files
www-ssg/src/blog/feeds.njk

21 lines
500 B
Plaintext
Raw Normal View History

2025-03-21 01:57:13 -04:00
---
layout: blog
---
{% renderFile "src/blog/feeds-stub.md" %}
<h3>Garrett's RSS List</h3>
<blockquote>
This list is also available in the standard <a href="/assets/rss_opml.xml" download>OPML format</a>.
</blockquote>
{% for cat in collections.opmlByCategory %}
<h4 style="background-color: var(--c-font)">{{ cat.title }}</h4>
<ul>
{% for sub in cat.subs %}
<li><a href="{{ sub.xmlUrl }}" download>{{ sub.title }}</a></li>
{% endfor %}
</ul>
{% endfor %}