{% extends "bases/blog.tera.html" %} {% block title %} {% if section.title %} {{ section.title }} {% else %} Hipcheck {% endif %} {% endblock %} {% block content %} {{ section.content | safe }}
{% for page in section.pages %}

{{ page.title }}

{% if page.summary %} {{ page.summary | safe }} {% endif %}

Written by {{ page.authors.0 }}

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

{% endfor %}
{% endblock %}