Implement page structure for blog

This commit is contained in:
2025-03-21 01:57:13 -04:00
parent a13cf711e3
commit 0e6c00e44b
31 changed files with 946 additions and 6 deletions

20
src/blog/feeds.njk Normal file
View File

@@ -0,0 +1,20 @@
---
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 %}