15 lines
231 B
HTML
15 lines
231 B
HTML
|
{% 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 %}
|