summaryrefslogtreecommitdiffstats
path: root/theme/templates/glossary.html
blob: 539ec59a8f98e7eb92e9226bf08c07d00c4cc1ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "site.html" %}

{% block title %}Glossary | {{ title }}{% endblock %}

{% block page_inner %}
{% for item in glossary %}
<section class="normal glossary" id="{{ item.name }}">
    <h2>{{ item.name }}</h2>
    <p>{{ item.description }}</p>
</section>
{% endfor %}
{% endblock %}