{% if section.title %}{{ section.title }}{% else %}{{ config.title }}{% endif %}
{%- if section.description %}
{{ section.description }}
{%- elif config.description %}
{{ config.description }}
{%- endif %}
{{ last_updated | date(format="%+") }}
{{ feed_url | safe }}
{%- for page in pages %}
{{ page.title }}
{{ page.date | date(format="%+") }}
{{ page.updated | default(value=page.date) | date(format="%+") }}
{%- if page.summary %}
{{ page.summary }}
{%- endif %}
{{ page.permalink | safe }}
{{ page.content }}
{%- endfor %}