summaryrefslogtreecommitdiffstats
path: root/theme
diff options
context:
space:
mode:
Diffstat (limited to 'theme')
-rw-r--r--theme/templates/langs.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/theme/templates/langs.html b/theme/templates/langs.html
new file mode 100644
index 0000000..238889d
--- /dev/null
+++ b/theme/templates/langs.html
@@ -0,0 +1,19 @@
+{% extends "layout.html" %}
+
+{% block title %}{{ title }}{% endblock %}
+
+{% block content %}
+<div class="book-langs-index">
+ <h1>{{ title }}</h1>
+
+ <ul class="languages">
+ {% for lang in langs %}
+ <li>
+ <a href="{{ basePath}}/{{ lang.path }}">{{ lang.title }}</a>
+ </li>
+ {% endfor %}
+ </ul>
+</div>
+{% endblock %}
+
+{% block javascript %}{% endblock %} \ No newline at end of file