summaryrefslogtreecommitdiffstats
path: root/theme/templates/langs.html
diff options
context:
space:
mode:
Diffstat (limited to 'theme/templates/langs.html')
-rwxr-xr-xtheme/templates/langs.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/theme/templates/langs.html b/theme/templates/langs.html
index 21bf64f..dd8c96b 100755
--- a/theme/templates/langs.html
+++ b/theme/templates/langs.html
@@ -2,6 +2,10 @@
{% block title %}{{ title }}{% endblock %}
+{% block style %}
+<link rel="stylesheet" href="{{ staticBase }}/style.css">
+{% endblock %}
+
{% block content %}
<div class="book-langs-index">
<div class="inner">
@@ -10,7 +14,7 @@
<ul class="languages">
{% for lang in langs %}
<li>
- <a href="{{ basePath}}/{{ lang.path }}">{{ lang.title }}</a>
+ <a href="{{ basePath}}/{{ lang.path|pathJoin("/index.html") }}">{{ lang.title }}</a>
</li>
{% endfor %}
</ul>