{% import "macros/authors.html" as authors_macros %} {% import "macros/opengraph.html" as opengraph_macros %} {% extends "base.html" %} {% block stylesheet %} {% endblock %} {% block head_extra %} {% if section %} {{ opengraph_macros::opengraph(title=section.title, url=section.permalink, content=section.content, type="website") }} {% else %} {% if page.extra.image %} {% set image = config.base_url ~ page.extra.image %} {% else %} {% set image = "" %} {% endif %} {{ opengraph_macros::opengraph(title=page.title, url=page.permalink, content=page.content, type="article", image=image) }} {% endif %} {% endblock %} {% block content %} {% if page %} {% set newspaper_date = page.date %} {% else %} {% set newspaper_date = now() %} {% endif %}

The Ydreniv Time

{% if section %} {{ section.content | safe }}
{% for page in paginator.pages %}

{{ page.title }}

, by {{ authors_macros::authors_inline(authors=page.extra.authors) }}

{% if page.updated != page.date -%}

This article has been edited on .

{% endif %}
{{ page.content | safe }}
{% endfor %}
{% include "includes/pagination-navigation.html" %} {% elif page %}

{{ page.title }}

, by {{ authors_macros::authors_inline(authors=page.extra.authors) }}

{% if page.updated != page.date -%}

This article has been edited on .

{% endif %}
{{ page.content | safe }}
{% endif %}
{% include "includes/footer.html" %} {% endblock content %}