Headers refer directly to links on RSS, links have authors

This commit is contained in:
jultty 2026-04-11 12:55:04 -03:00
commit 01307f75f8
213 changed files with 283 additions and 22 deletions

View file

@ -79,7 +79,13 @@
{% for link in links.pages %}
<li>
<span class="post-date">{{ link.date | date(format="%Y-%m-%d") }}</span>
<a href="{{ link.extra.url | safe }}">{{ link.title }}</a>
<a href="
{%- if link.content -%}
{{ link.permalink | safe }}
{%- else -%}
{{ link.extra.url | safe }}
{%- endif -%}
">{{ link.title }}</a>
</li>
{% if loop.index == 5 %}{% break %}{% endif %}
{% endfor %}