{% extends "templates/base.html" %} {% block contained-main-content %}

{{ page-data.site-title }}

{{ page-data.site-description }}

{{ headliner.title }}

{% if headliner.subtitle %}

{{ headliner.subtitle }}

{% endif %} {% if headliner.excerpt %}

{{ headliner.excerpt|safe }}

{% endif %}

Date: {{ headliner.datestamp }}

Author: {{ headliner.author }}

Category: {{ headliner.category }}

{% for row in posts-data %}
{% for column in row %}

{{ column.title }}

{% if column.subtitle %}

{{ column.subtitle }}

{% endif %} {% if column.excerpt %}

{{ column.excerpt|safe }}

{% endif %}

Date: {{ column.datestamp }}

Author: {{ column.author }}

Category: {{ column.category }}

{% endfor %}
{% endfor %}
{% endblock %}