{% import "macros/feed.html" as feed_macros %}
{{ config.title }}
{%- if term %} - {{ term.name }}
{%- elif section.title %} - {{ section.title }}
{%- endif -%}
{%- if section -%}
{{ section.permalink | escape_xml | safe }}
{%- else -%}
{{ config.base_url | escape_xml | safe }}
{%- endif -%}
{{ config.description }}
Zola
{{ lang }}
{% if last_updated is defined %}{{ last_updated | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% endif %}
{%- for page in pages %}
-
{{ page.title }}
{{ page.date | date(format="%a, %d %b %Y %H:%M:%S %z") }}
{%- if page.authors -%}
{{ page.authors[0] }}
{%- elif config.author -%}
{{ config.author }}
{%- else -%}
Unknown
{%- endif -%}
{{ page.permalink | escape_xml | safe }}
{{ page.permalink | escape_xml | safe }}
{{ feed_macros::content(page=page) }}
{%- endfor %}