{% extends "base.html" %} {% block title %}Blog | {{ config.title }}{% endblock title %} {% block content %}

Blog

{% if section.content %}
{{ section.content | safe }}
{% endif %}
{% if paginator is defined and paginator %} {% set posts = paginator.pages %} {% else %} {% set posts = section.pages | sort(attribute="date") | reverse %} {% endif %} {% for page in posts %}

{{ page.title }}

{% if page.date %} {% endif %}
{% if page.description %}

{{ page.description }}

{% elif page.summary %}

{{ page.summary | safe }}

{% endif %} {% if page.taxonomies.tags is defined and page.taxonomies.tags %}
{% for tag in page.taxonomies.tags %} {{ tag }} {% endfor %}
{% endif %}
{% endfor %}
{% if paginator is defined and paginator and paginator.number_pagers > 1 %} {% endif %}
{% endblock content %}