{% if section is defined and section.title %}{{ section.title }}{% else %}{{ config.title }}{% endif %}
{%- if section is defined and section.description %}
{{ section.description }}
{%- elif config.description %}
{{ config.description }}
{%- endif %}
{% if last_updated is defined %}
{{ last_updated | date(format="%Y-%m-%dT%H:%M:%S%:z") }}
{% endif %}
{{ feed_url | safe }}
{%- for page in pages %}
{{ page.title }}
{{ page.date | date(format="%Y-%m-%dT%H:%M:%S%:z") }}
{{ (page.updated or page.date) | date(format="%Y-%m-%dT%H:%M:%S%:z") }}
{{ page.permalink | safe }}
{% if page.summary %}
{{ page.summary }}
{% endif %}
{{ page.content }}
{%- endfor %}