blob: 56365fc4ffbc5ad45af9d1b9c6ff7bc5e9c166d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends "base.html" %}
{% block content %}
<a href="{{ get_url(path='@/_index.md') }}"> <- back to landing</a>
<h1 class="title">
{{ section.title }}
</h1>
<ul>
{% for page in section.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a> ({{page.date}})</li>
{% endfor %}
</ul>
{% endblock content %}
|