mirror of
https://gitlab.com/veilid/veilid-dot-com.git
synced 2025-03-13 10:56:35 -04:00
7 lines
491 B
Twig
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 -%} |