summaryrefslogtreecommitdiffstats
path: root/theme/templates/langs.html
diff options
context:
space:
mode:
Diffstat (limited to 'theme/templates/langs.html')
-rw-r--r--theme/templates/langs.html18
1 files changed, 10 insertions, 8 deletions
diff --git a/theme/templates/langs.html b/theme/templates/langs.html
index 238889d..c3a628f 100644
--- a/theme/templates/langs.html
+++ b/theme/templates/langs.html
@@ -4,15 +4,17 @@
{% block content %}
<div class="book-langs-index">
- <h1>{{ title }}</h1>
+ <div class="inner">
+ <h1>{{ title }}</h1>
- <ul class="languages">
- {% for lang in langs %}
- <li>
- <a href="{{ basePath}}/{{ lang.path }}">{{ lang.title }}</a>
- </li>
- {% endfor %}
- </ul>
+ <ul class="languages">
+ {% for lang in langs %}
+ <li>
+ <a href="{{ basePath}}/{{ lang.path }}">{{ lang.title }}</a>
+ </li>
+ {% endfor %}
+ </ul>
+ </div>
</div>
{% endblock %}