{% extends "base.html" %} {% import "macros.html" as macros %} {% block content %}
{% for page in paginator.pages %}

{{page.title}}

{% if page.date %} {{ macros::frontmatter(classes="", author=page.extra.author, date=page.date, word_count=page.word_count, read_time=page.reading_time) }} {% else %} {{ macros::frontmatter(classes="", author=page.extra.author, date="", word_count=page.word_count, read_time=page.reading_time) }} {% endif %} {% if page.summary %}

{{ page.summary | safe }}

{% else %}

{{ page.content | striptags | truncate | safe }}

{% endif %} Continue Reading →
{% endfor %}
{% endblock content %} {% block pagination %} {% endblock pagination %}