{% import "macros.html" as macros %}
{% extends "base.html" %}
{% block content %}
<main>
<h1>{{ section.title }}</h1>
{% for page in section.pages %}
{{ macros::newsitem(item=page) }}
{% endfor %}
</main>
{% endblock content %}