{{ config.title }}
{%- if term %} - {{ term.name }}
{%- elif section.title %} - {{ section.title }}
{%- endif -%}
{% if config.description %}{{ config.description }}{% endif %}
Zola
{{ last_updated | date(format="%+") }}
{{ feed_url | safe }}
{%- set is_local = "127.0.0.1" in config.base_url or "localhost" in config.base_url %}
{%- set current_ts = now(timestamp=true) %}
{%- for page in pages %}
{%- set page_ts = page.date | date(format="%s") | int %}
{%- if is_local or page_ts <= current_ts %}
{{ page.title }}
{{ page.date | date(format="%+") }}
{{ page.updated | default(value=page.date) | date(format="%+") }}
{%- if page.authors %}
{{ page.authors | first }}
{%- elif config.author %}
{{ config.author }}
{%- else %}
Unknown
{%- endif %}
{{ page.permalink | safe }}
{% if page.summary %}
{{ page.summary }}
{% endif %}
{{ page.content }}
{%- endif %}
{%- endfor %}