diff options
Diffstat (limited to 'theme/templates/website/langs.html')
-rwxr-xr-x | theme/templates/website/langs.html | 25 |
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 %} |