You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
235 B
HTML
11 lines
235 B
HTML
1 year ago
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1 class="title">{{ section.title }}</h1>
|
||
|
<ul>
|
||
|
{% for page in section.pages %}
|
||
|
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% endblock %}
|