-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathindex.html
50 lines (48 loc) · 1.73 KB
/
index.html
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
39
40
41
42
43
44
45
46
47
48
49
50
---
layout: default
edit_link:
warning: _includes/warning.md
description: _includes/description.md
features: _data/features.yml
---
<header>
<div class="center">
<img src="images/logo.png" class="logo">
{% capture mdtmp %}{% include description.md %}{% endcapture %}
<div class="description">{{ mdtmp | markdownify }}</div>
<div id="download-button" tabindex="0">
<span class="mdi mdi-android"></span>
<div class="text">
<strong>Free Download</strong>
<small> for Android</small>
</div>
<div class="options">
{% for download in site.data.downloads %}
<a href="{{ download.url }}" style="color: {{ download.color }}" title="{{ download.title }}" onfocus="this.parentElement.parentElement.focus()">
<span class="mdi mdi-{{ download.icon }}"></span>
<small>{{ download.name }}</small>
</a>
{% endfor %}
</div>
</div>
</div>
</header>
<main>
{% capture mdtmp %}{% include warning.md %}{% endcapture %}
{% unless mdtmp contains "WARNING_DISABLED" %}
<div class="warning">
{{ mdtmp | markdownify }}
</div>
{% endunless %}
<div class="container">
<div class="features">
{% for feature in site.data.features %}
<div class="feature-container">
<div class="feature-icon mdi mdi-{{ feature.icon }}"></div>
<div class="feature-title">{{ feature.title }}</div>
<div class="feature-description">{{ feature.description }}</div>
</div>
{% endfor %}
</div>
</div>
</main>