diff options
Diffstat (limited to 'theme/templates/langs.html')
-rw-r--r-- | theme/templates/langs.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/theme/templates/langs.html b/theme/templates/langs.html new file mode 100644 index 0000000..c3a628f --- /dev/null +++ b/theme/templates/langs.html @@ -0,0 +1,21 @@ +{% extends "layout.html" %} + +{% block title %}{{ title }}{% endblock %} + +{% block content %} +<div class="book-langs-index"> + <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> + </div> +</div> +{% endblock %} + +{% block javascript %}{% endblock %}
\ No newline at end of file |