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

25 lines
675 B
Plaintext

---
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 %}
{% if (cat.title == "Garrett Mills") %}
<h4 style="background-color: var(--c-font)">{{ cat.title }} (Shameless Self-Plug)</h4>
{% else %}
<h4 style="background-color: var(--c-font)">{{ cat.title }}</h4>
{% endif %}
<ul>
{% for sub in cat.subs %}
<li><a href="{{ sub.htmlUrl }}" download>{{ sub.title }}</a></li>
{% endfor %}
</ul>
{% endfor %}