17 | {% if languages|length >= 1 %}
18 |
19 | - {{ _('Languages') }}
20 | {% for slug, url in languages %}
21 | {% if slug == current_language %} {% endif %}
22 | - {{ slug }}
23 | {% if slug == current_language %} {% endif %}
24 | {% endfor %}
25 |
26 | {% endif %}
27 | {% if versions|length >= 1 %}
28 |
29 | - {{ _('Versions') }}
30 | {% for slug, url in versions %}
31 | {% if slug == current_version %} {% endif %}
32 | - {{ slug }}
33 | {% if slug == current_version %} {% endif %}
34 | {% endfor %}
35 |
36 | {% endif %}
37 | {% if downloads|length >= 1 %}
38 |
39 | - {{ _('Downloads') }}
40 | {% for type, url in downloads %}
41 | - {{ type }}
42 | {% endfor %}
43 |
44 | {% endif %}
45 | {% if READTHEDOCS %}
46 |
47 | - {{ _('On Read the Docs') }}
48 | -
49 | {{ _('Project Home') }}
50 |
51 | -
52 | {{ _('Builds') }}
53 |
54 |
55 | {% endif %}
56 |
57 | {% trans %}Free document hosting provided by
GitHub Pages.{% endtrans %}
58 |
59 |