links rss

This commit is contained in:
Joshua Seigler 2025-07-04 02:22:45 -04:00
parent 82ae1ef877
commit e5e4dbacf0
4 changed files with 15 additions and 31 deletions

View file

@ -7,7 +7,6 @@ pagination:
filter:
- all
- pages
- links
- timeline
eleventyComputed:
finalLink: "{% if tag == 'combinedFeed' %}feed.xml{% else %}feeds/{{tag | slugify}}.xml{% endif %}"

0
site/pages/links.md Normal file
View file

View file

@ -1,21 +0,0 @@
---
layout: "base.njk"
title: "Links"
permalink: /links/
useTitle: true
---
<main>
<section data-pagefind-body>
<ul class="collection">
{%- for item in collections.links -%}
<li>
<a href="{{item.url}}">{{item.data.title}}</a>
{%- if item.data.date -%}
<aside>{{item.data.date | formatDate("MMMM DD, YYYY") }}</aside>
{%- endif -%}
{{item.data.description | safe}}
</li>
{%- endfor -%}
</ul>
</section>
</main>