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

{{ page.title }} ()

{%- if page.summary -%} {{ page.summary | markdown(inline=true) | safe }} {%- elif page.description %} {{ page.description | safe }} {%- elif page.content -%} {{ page.content | striptags | truncate(length=150) | safe }} {%- endif -%}

{% endfor %} {% endblock content %}