summaryrefslogtreecommitdiffstats
path: root/theme/templates
diff options
context:
space:
mode:
Diffstat (limited to 'theme/templates')
-rw-r--r--theme/templates/glossary.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/theme/templates/glossary.html b/theme/templates/glossary.html
index 73ef4d6..539ec59 100644
--- a/theme/templates/glossary.html
+++ b/theme/templates/glossary.html
@@ -3,5 +3,10 @@
{% 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 %}