summaryrefslogtreecommitdiffstats
path: root/theme/templates/langs.html
blob: 21bf64f641e7dd42955d9b9fd58648f8c986d570 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "layout.html" %}

{% block title %}{{ title }}{% endblock %}

{% block content %}
<div class="book-langs-index">
    <div class="inner">
        <h3>Choose a language</h3>

        <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 %}