summaryrefslogtreecommitdiffstats
path: root/theme/templates/website/glossary.html
diff options
context:
space:
mode:
Diffstat (limited to 'theme/templates/website/glossary.html')
-rw-r--r--theme/templates/website/glossary.html17
1 files changed, 0 insertions, 17 deletions
diff --git a/theme/templates/website/glossary.html b/theme/templates/website/glossary.html
deleted file mode 100644
index dd3f719..0000000
--- a/theme/templates/website/glossary.html
+++ /dev/null
@@ -1,17 +0,0 @@
-{% extends "page.html" %}
-
-{% block title %}{{ __("GLOSSARY") }} | {{ title }}{% endblock %}
-
-{% block page_inner %}
- {% for item in glossary %}
- <section class="normal glossary" id="{{ item.id }}">
- <h2><a href="#{{ item.id }}">{{ item.name }}</a></h2>
- <p>{{ item.description|safe }}</p>
- <ul class="glossary-index">
- {% for file in item.files %}
- <li><a href="{{ basePath }}/{{ file.path|contentLink }}"><span class="level">{{ file.level }}.</span> {{ file.title }}</a></li>
- {% endfor %}
- </ul>
- </section>
- {% endfor %}
-{% endblock %}