diff options
Diffstat (limited to 'theme/templates/ebook/glossary.html')
-rw-r--r-- | theme/templates/ebook/glossary.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/theme/templates/ebook/glossary.html b/theme/templates/ebook/glossary.html index d4d46f2..1266f27 100644 --- a/theme/templates/ebook/glossary.html +++ b/theme/templates/ebook/glossary.html @@ -1,11 +1,11 @@ {% extends "./page.html" %} -{% block title %}{% i18n "GLOSSARY" %}Glossary{% endi18n %} | {{ title }}{% endblock %} +{% block title %}{{ __("GLOSSARY") }} | {{ title }}{% endblock %} {% block content %} <div class="page page-toc"> - <h1 class="book-chapter book-chapter-1">{% i18n "GLOSSARY" %}Glossary{% endi18n %}</h1> - <h1>{% i18n "GLOSSARY" %}Glossary{% endi18n %}</h1> + <h1 class="book-chapter book-chapter-1">{{ __("GLOSSARY") }}</h1> + <h1>{{ __("GLOSSARY") }}</h1> {% for item in glossary %} <section class="normal glossary" id="{{ item.id }}"> <h2><a href="#{{ item.id }}">{{ item.name }}</a></h2> |