summaryrefslogtreecommitdiffstats
path: root/theme/templates/website/langs.html
diff options
context:
space:
mode:
Diffstat (limited to 'theme/templates/website/langs.html')
-rwxr-xr-xtheme/templates/website/langs.html25
1 files changed, 0 insertions, 25 deletions
diff --git a/theme/templates/website/langs.html b/theme/templates/website/langs.html
deleted file mode 100755
index 66770ec..0000000
--- a/theme/templates/website/langs.html
+++ /dev/null
@@ -1,25 +0,0 @@
-{% extends "./layout.html" %}
-
-{% block title %}{{ __("LANGS_CHOOSE") }} | {{ title }}{% endblock %}
-
-{% block style %}
-<link rel="stylesheet" href="{{ staticBase }}/style.css">
-{% endblock %}
-
-{% block content %}
-<div class="book-langs-index" role="navigation">
- <div class="inner">
- <h3>{{ __("LANGS_CHOOSE") }}</h3>
-
- <ul class="languages">
- {% for lang in langs %}
- <li>
- <a href="{{ basePath}}/{{ lang.lang }}/index.html">{{ lang.title }}</a>
- </li>
- {% endfor %}
- </ul>
- </div>
-</div>
-{% endblock %}
-
-{% block javascript %}{% endblock %}