12 lines
224 B
HTML
12 lines
224 B
HTML
{% extends "base.html" %}
|
|
|
|
|
|
{% block content %}
|
|
{{section.content | safe}}
|
|
|
|
<ul>
|
|
{% for page in section.pages %}
|
|
<li><a href="{{page.permalink}}">{{page.path | safe}}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock content %}
|