-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·81 lines (70 loc) · 3.35 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
---
layout: default
body_class: ''
---
<div class="container">
<div class="row align-items-center">
<!-- content-->
<div class="col-lg-5 offset-lg-1 col-md-9 offset-md-3 col-sm-12 order-last order-lg-first order-xl-first">
<div class="{{ site.app_icon_alignment }}">
{% if site.show_app_icon %}
<div class="">
<a class="navbar-brand" href="{{ site.appStoreLink }}" target="_blank" rel="noopener noreferrer">
<img src="{{ site.url }}/images/[email protected]" alt="{{ site.title }}">
</a>
</div>
{% endif %}
<div class="d-block d-sm-none mobile-spacing"><!-- spacing hack on mobile --></div>
{% if site.title_line_1 %}
<h1 class="title {{ site.title_alignment }}">{{ site.title_line_1 }} <br class="d-none d-sm-block">{{ site.title_line_2 }}</h1>
{% endif %}
{% if site.subtitle %}
<h3 class="subtitle {{ site.subtitle_alignment }}">{{ site.subtitle }}</h3>
{% endif %}
{% if site.description %}
<p class="description {{ site.description_alignment }}">{{ site.description }}</p>
{% endif %}
</div>
{% if site.features_list != nil %}
<ul class="list-unstyled">
{% for feature in site.features_list %}
<li class="custom-control-inline">
<div class="features-list-item">
<span class="text-center">
<img class="" alt="{{ feature.icon_alt }}" src="{{ site.url }}/images/{{ feature.icon }}">
</span>
<p class="text-left">{{ feature.text }}</p>
</div>
</li>
{% endfor %}
</ul>
{% endif %}
<ul class="list-unstyled custom-control-inline text-center">
{% if site.appStoreLink %}
<li>
<a class="col-sm-6" href="{{ site.appStoreLink }}" target="_blank" rel="noopener noreferrer">
<img class="app-store-badge" src="{{ site.url }}/images/[email protected]" alt="AR FaceFighter - App on the Apple App Store">
</a>
</li>
{% endif %}
{% if site.playStoreLink %}
<li>
<a class="col-sm-6" href="{{ site.playStoreLink }}" target="_blank" rel="noopener noreferrer">
<img class="app-store-badge" src="{{ site.url }}/images/[email protected]" alt="AR FaceFighter - App on the Google Play Store">
</a>
</li>
{% endif %}
</ul>
</div>
<!-- end content -->
<!-- devices -->
<div class="text-center col-lg-6 col-md-12 col-sm-12 col-xs-12">
<a href="{{ site.appStoreLink }}" target="_blank" rel="noopener noreferrer">
<img class="iphone-android-group" src="{{ site.url }}/images/[email protected]" alt="">
</a>
</div>
<!-- end devices -->
</div>
<!-- end row-->
</div>
<!-- end container-->