Add category list and header links to blogroll

This commit is contained in:
Nathan Upchurch 2025-07-16 12:50:07 -05:00
parent 46f83c4c24
commit d38da8fc37

View File

@ -4,10 +4,17 @@ title: Nathan Upchurch | Blogroll
structuredData: none structuredData: none
--- ---
<h1>Blogroll</h1> <h1>Blogroll</h1>
<p class="nodropcap page-block">Here are some of the blogs I subscribe to. You can click the RSS icon next to each to subscribe using <a href="../about-feeds/">your newsreader</a>, or import all of them at once by downloading and importing this convenient <a href="./nathanUpchurchBlogroll.opml" download>.opml file</a>.</p> <p class="nodropcap">Here are some blogs and independent news outlets I like to read. You can click the RSS icon next to each to subscribe using <a href="../about-feeds/">your newsreader</a>, or import all of them at once by downloading and importing this convenient <a href="./nathanUpchurchBlogroll.opml" download>.opml file</a>.</p>
<p class="page-block">
<em>Skip to category:
{% for category in blogroll.categories %}
<a href="#{{ category.name | slugify }}">{{ category.name }}</a>{% if loop.last %}.{% else %},{% endif %}
{% endfor %}
</em></p>
{% for category in blogroll.categories %} {% for category in blogroll.categories %}
<section class="blogroll"> <section class="blogroll">
<h2>{{ category.name }}:</h2> <h2 id="{{ category.name | slugify }}">{{ category.name }}:<a class="header-anchor" href="#{{ category.name | slugify }}">#</a></h2>
{% for blog in category.blogs %} {% for blog in category.blogs %}
<div class="blogroll-category-group"> <div class="blogroll-category-group">
<a href="{{ blog.url }}"><h3>{{ blog.title }}</h3></a> <a href="{{ blog.url }}"><h3>{{ blog.title }}</h3></a>