blob: ddc880930a59bab4598a929d6fae9795aa5641de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{% extends "./page.html" %}
{% block title %}{{ __("GLOSSARY") }} | {{ title }}{% endblock %}
{% block page %}
<h1 class="book-chapter book-chapter-1">{{ __("GLOSSARY") }}</h1>
<div class="section glossary">
<h1>{{ __("GLOSSARY") }}</h1>
{% for item in glossary %}
<div class="glossary-entry" 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>
</div>
{% endfor %}
</div>
{% endblock %}
|