|
|
|
@ -5,26 +5,25 @@
|
|
|
|
|
{%- elif section.title %} - {{ section.title }}
|
|
|
|
|
{%- endif -%}
|
|
|
|
|
</title>
|
|
|
|
|
{%- if config.description %} <subtitle>{{ config.description }}</subtitle> {%- endif %} <link
|
|
|
|
|
href="{{ feed_url | safe }}" rel="self" type="application/atom+xml" />
|
|
|
|
|
<link
|
|
|
|
|
href="
|
|
|
|
|
{%- if config.description %}
|
|
|
|
|
<subtitle>{{ config.description }}</subtitle>
|
|
|
|
|
{%- endif %}
|
|
|
|
|
<link href="{{ feed_url | safe }}" rel="self" type="application/atom+xml"/>
|
|
|
|
|
<link href="
|
|
|
|
|
{%- if section -%}
|
|
|
|
|
{{ section.permalink | escape_xml | safe }}
|
|
|
|
|
{%- else -%}
|
|
|
|
|
{{ config.base_url | escape_xml | safe }}
|
|
|
|
|
{%- endif -%}
|
|
|
|
|
" />
|
|
|
|
|
<generator
|
|
|
|
|
uri="https://www.getzola.org/">Zola</generator>
|
|
|
|
|
<updated>{{ last_updated | date(format="%+")
|
|
|
|
|
}}</updated>
|
|
|
|
|
<id>{{ feed_url | safe }}</id> {%- for page in pages %} <entry
|
|
|
|
|
xml:lang="{{ page.lang }}">
|
|
|
|
|
"/>
|
|
|
|
|
<generator uri="https://www.getzola.org/">Zola</generator>
|
|
|
|
|
<updated>{{ last_updated | date(format="%+") }}</updated>
|
|
|
|
|
<id>{{ feed_url | safe }}</id>
|
|
|
|
|
{%- for page in pages %}
|
|
|
|
|
<entry xml:lang="{{ page.lang }}">
|
|
|
|
|
<title>{{ page.title }}</title>
|
|
|
|
|
<published>{{ page.date | date(format="%+") }}</published>
|
|
|
|
|
<updated>{{
|
|
|
|
|
page.updated | default(value=page.date) | date(format="%+") }}</updated>
|
|
|
|
|
<updated>{{ page.updated | default(value=page.date) | date(format="%+") }}</updated>
|
|
|
|
|
<author>
|
|
|
|
|
<name>
|
|
|
|
|
{%- if page.authors -%}
|
|
|
|
@ -36,10 +35,8 @@
|
|
|
|
|
{%- endif -%}
|
|
|
|
|
</name>
|
|
|
|
|
</author>
|
|
|
|
|
<link
|
|
|
|
|
rel="alternate" href="{{ page.permalink | safe }}" type="text/html" />
|
|
|
|
|
<id>{{
|
|
|
|
|
page.permalink | safe }}</id>
|
|
|
|
|
<link rel="alternate" href="{{ page.permalink | safe }}" type="text/html"/>
|
|
|
|
|
<id>{{ page.permalink | safe }}</id>
|
|
|
|
|
{% if page.summary %}
|
|
|
|
|
<summary type="html">{{ page.summary }}</summary>
|
|
|
|
|
{% elif page.description %}
|
|
|
|
|