summaryrefslogtreecommitdiffstats
path: root/theme/templates/ebook/glossary.html
blob: ce10c637fe5b5b0a507245e6558c9f9af8f2277d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "./page.html" %}

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

{% block content %}
<div class="page page-toc">
    <h1>Glossary</h1>
	{% for item in glossaryIndex %}
	<section class="normal glossary" id="{{ item.id }}">
	    <h2><a href="#{{ item.id }}">{{ item.name }}</a></h2>
	    <p>{{ item.description }}</p>
	</section>
	{% endfor %}
</div>
{% endblock %}