{% extends "layout.html" %} {% block content %}

{{ section.title }}

{% if paginator %} {% set pages = paginator.pages %} {% else %} {% set pages = section.pages %} {% endif %} {% for page in pages %}

{{ page.title }}

{{ page.description }}

{{ page.reading_time }} min {{ page.word_count }} words
{{ page.summary | safe }} Read More
{% endfor %}
{% endblock content %} {% block pagination %} {% if paginator.previous or paginator.next %}
{% if not paginator.previous %} Previous {% else %} Previous {% endif %} {% if not paginator.next %} Next Page {% else %} Next page {% endif %}
{% endif %} {% endblock %}