Files
labyricorn-site/templates/macros/feed-links.html
T
Labyricorn a88092631a
Deploy production / deploy (push) Successful in 21s
Add Atom and RSS feeds
2026-08-23 17:37:05 -07:00

14 lines
603 B
HTML

{% macro feed_autodiscovery(atom_url, rss_url, title) -%}
<link rel="alternate" type="application/atom+xml" title="{{ title }} (Atom)" href="{{ atom_url }}">
<link rel="alternate" type="application/rss+xml" title="{{ title }} (RSS)" href="{{ rss_url }}">
{%- endmacro %}
{% macro visible_feed_links(atom_url, rss_url) -%}
<span class="feed-links" aria-label="Syndication feeds">
<span>Feeds:</span>
<a href="{{ atom_url }}" type="application/atom+xml">Atom</a>
<span aria-hidden="true">/</span>
<a href="{{ rss_url }}" type="application/rss+xml">RSS</a>
</span>
{%- endmacro %}