summaryrefslogtreecommitdiffstats
path: root/theme/templates/website/glossary.html
diff options
context:
space:
mode:
authorSamy Pessé <samypesse@gmail.com>2016-02-17 14:07:15 +0100
committerSamy Pessé <samypesse@gmail.com>2016-02-17 14:07:15 +0100
commit6ee9a3a64c76109719227a056ae2b29cb447cd76 (patch)
tree4cc2f8202a83369501a74625ee953b10b286de5b /theme/templates/website/glossary.html
parentc0196c97a50786cd28c9b72197b39fefb47be333 (diff)
downloadgitbook-6ee9a3a64c76109719227a056ae2b29cb447cd76.zip
gitbook-6ee9a3a64c76109719227a056ae2b29cb447cd76.tar.gz
gitbook-6ee9a3a64c76109719227a056ae2b29cb447cd76.tar.bz2
Remove old theme
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 %}