{% extends "base.html" %}

{% block content %}

{% for page in section.pages %}
<a href="{{ page.permalink }}">
	<div>
		<h2>{{ page.title }}</h2>
		<h3>{{ page.description }}</h3>
	</div>
</a>
{% endfor %}

{% endblock content %}