13 lines
299 B
HTML
13 lines
299 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block title %}{{ section.title }}{% endblock title %}
|
||
|
|
||
|
{% block content %}
|
||
|
{{ section.content | safe }}
|
||
|
|
||
|
<ul>
|
||
|
{% for page in section.pages %}
|
||
|
<li><a href="{{ page.permalink | safe }}">[{{ page.date }}] {{ page.title }}</a></li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% endblock content %}
|