{% extends "base.html" %} {% block title %} Blog - {{ config.title }} {% endblock %} {% block content %} {% for page in paginator.pages %}

{{ page.title }}

{{ page.date | date(format="%B %-d, %Y") }}

{% for tag in page.taxonomies["tags"] %} #{{ tag }} {%- endfor %}

{{ page.summary | safe }}

Read more…

{% if not loop.last %}
{% endif %} {% endfor %} {% endblock %}