-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
62 lines (61 loc) · 2.11 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
---
layout: home
title: "Arena Of Evolution: Red Tides Guide"
adsense: yes
comment: no
---
<style>
.site-header {
height: calc(100vh - 100px);
}
#features {
position: absolute;
color: white;
top: 100px;
left: 0px;
margin: 50px;
}
@media screen and (max-width:991px) {
.site-header {
height: 650px;
}
}
</style>
<div id="features">
<div class="row">
<div class="col-12 col-md-6 d-none d-md-block">
<h2>Download now on <a href="{{ site.download_link }}" target="_blank">Google Play</a></h2>
<iframe width="100%" height="315" src="https://www.youtube.com/embed/Mqg7t5Fw4do?start=6&autoplay=1" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="col-12 col-md-6">
<h2>Wiki</h2>
{%- include features.html -%}
</div>
</div>
<a id="particles-off" href="/" onclick="window.localStorage.setItem('particles', 'no')" style="float: right">Turn off visual effect</a>
<a id="particles-on" href="/" onclick="window.localStorage.setItem('particles', 'yes')" style="float: right">Turn on visual effect</a>
<script>
if (localStorage.getItem('particles') === 'no') {
document.getElementById('particles-off').classList.add('hidden');
} else {
document.getElementById('particles-on').classList.add('hidden');
}
</script>
</div>
{%- if site.posts.size > 0 -%}
<ul class="post-list">
{%- for post in site.posts -%}
<li class="{{ post.class }}">
<a class="post-link" href="{{ post.url | relative_url }}">
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
<span class="post-meta">{{ post.date | date: date_format }}</span>
<h3>{{ post.title | escape }}</h3>
{%- if site.show_excerpts -%}
{{ post.excerpt }}
{%- endif -%}
</a>
</li>
{%- endfor -%}
</ul>
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</a></p>
{%- endif -%}