feat: refactor feeds; reduce dependencies

This commit is contained in:
Cory Dransfeldt 2024-04-17 14:07:43 -07:00
parent 4067148658
commit d768007f1c
No known key found for this signature in database
375 changed files with 2568 additions and 13971 deletions

View file

@ -2,14 +2,15 @@
title: Links
layout: default
pagination:
data: links
data: collections.links
size: 30
---
<ul class="link-list reduced-spacing">
{% for link in pagination.items %}
<li>
<a href="{{ link.url }}">{{ link.title }}</a>
{% if link.author and link.author != 'undefined' %}by {{ link.author }}{% endif %}
<a href="{{ link.url }}" title="{{ link.data.title | escape }}">
{{ link.data.title }}
</a>
</li>
{% endfor %}
</ul>