veilid-dot-com/themes/veilid2025/layouts/partials/feeds-from-section.html.twig
2025-03-04 11:59:05 -05:00

7 lines
491 B
Twig

{%- set feed_formats = ['atom', 'rss', 'jsonfeed'] -%}
{%- if page.section|default and page.type == 'page' -%}
{%- set section_page = site.page(page.section)|default -%}
{%- if section_page and section_page.alternates is defined -%}
{{- include('partials/alternates.html.twig', {title: section_page.title|e ~ ' - ' ~ site.title|e , page: section_page, alternates: section_page.alternates|filter(a => a.format in feed_formats)}, with_context = false) ~}}
{%- endif -%}
{%- endif -%}