blob: 8b01177ac19bacc79c4f1f12d6deb0154be943b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{% extends "base.html" %}
{% block content %}
<a href="{{ get_url(path='@/_index.md') }}"> <- back to landing</a>
<h1 class="title">
{{ section.title }}
</h1>
{% set categories = get_taxonomy(kind="categories") %}
{% for category in categories.items %}
<b>{{category.name}}</b>
<ul>
{% for page in category.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.title }}: {{ page.description }}</a></li>
{% endfor %}
</ul>
{% endfor %}
{% endblock content %}
|