-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathlanguages.html
More file actions
38 lines (32 loc) · 1.58 KB
/
languages.html
File metadata and controls
38 lines (32 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
title: Languages
description: Below you'll find a list of language packs and where you can download them
---
<section>
{% for language in site.data.languages.languages %}
<div>
<p class="languages-list"><span class="flag-container"><img src="{{ language.icon }}" alt="{{ language.name }} flag" class="language-flag"></span> {{ language.name }}
{% if language.github == nil or language.github == "" %}
<img class="no-link-found not-full-icon" src="/images/github.png" width="32px" height="32px"/></a>
{% else %}
<a href="{{ language.github }}"><img class="not-full-icon" src="/images/github.png" alt="{{ language.name }} on github" width="32px" height="32px"/></a>
{% endif %}
{% if language.f-droid == nil or language.f-droid == "" %}
<img class="no-link-found not-full-icon" src="/images/fdroid.png" width="32px" height="32px" alt="F-Droid icon"/></a>
{% else %}
<a href="{{ language.f-droid }}"><img class="not-full-icon" src="/images/fdroid.png" alt="{{ language.name }} on f-droid" width="32px" height="32px"/></a>
{% endif %}
{% if language.play == nil or language.play == "" %}
<img class="no-link-found not-full-icon" src="/images/play.png" width="32px" height="32px"/></a>
{% else %}
<a href="{{ language.play }}"><img class="not-full-icon" src="/images/play.png" alt="{{ language.name }} on Google Play Store" width="32px" height="32px"/></a>
{% endif %}
</p>
</div>
{% endfor %}
{% assign total = 0 %}
{% for language in site.data.languages.languages %}
{% assign total = total | plus: 1 %}
{% endfor %}
<p>Number of languages available: {{ total }}</p>
</section>