You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
392 B
19 lines
392 B
6 years ago
|
{% extends "index.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>{{ section.title }}</h1>
|
||
|
{{ section.content | safe }}
|
||
|
|
||
|
{% for page in section.pages %}
|
||
|
<div class="post">
|
||
|
<h2 class="post-title">
|
||
|
<a href="{{ page.permalink }}">
|
||
|
{{ page.title }}
|
||
|
</a>
|
||
|
</h2>
|
||
|
|
||
|
<span class="post-date">{{ page.date | date(format="%Y-%m-%d") }}</span>
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
{% endblock content %}
|