{% extends "base.html" %} {% block content %}
{% for page in paginator.pages %}
{% if page.date %} {% endif %}

{{ page.title | safe }}

{% if page.summary %} {{ page.summary | striptags | safe }} {% elif page.extra.excerpt %} {{ page.extra.excerpt | striptags | safe }} {% else %} {{ page.content | striptags | truncate(length=300) | safe }} {% endif %}

{{ macros::reading_time_from(word_count=page.word_count) }} {% if page.taxonomies["tags"] %}{{ macros::print_tags(page=page) }}{% endif %}
{% endfor %}
{% include "nav_pagination.html" %} {% endblock content %}