10 lines
206 B
HTML
10 lines
206 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>{{ section.title }}</h1>
|
||
|
|
||
|
{% for page in section.pages %}
|
||
|
<a href="{{ page.permalink | safe }}">{{ page.title }}</a>
|
||
|
{% endfor %}
|
||
|
{% endblock %}
|