{% extends "base.html" %} {% block title %}{{ section.title }} - {{ super() }}{% endblock title %} {% block content %}
{% for page in paginator.pages %}

{{ page.title }}

{{ page.date | date(format="%b %e, %Y") }} · {{ page.reading_time }} minute read
{% if page.description %}

{{ page.description }}

{% endif %} {% if page.taxonomies.categories or page.taxonomies.tags %}
    {% if page.taxonomies.tags %}
  • Tags: {% for tag in page.taxonomies.tags %} #{{ tag }} {% endfor %}
  • {% endif %}
{% endif %} Read full entry →
{% endfor %}
{% endblock content %}