-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (40 loc) · 1.33 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
---
---
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<meta name='referrer' content='strict-origin'>
<meta name='viewport' content='width=divice-width, initial-scale=1.0'>
<meta name='author' content="Kira Voronok">
<link rel='stylesheet' href="/assets/css/styles.css">
<link rel='shortcut icon' type='image/png' href="/assets/images/favicon.ico"/>
<script type='text/javascript' src="/assets/js/time.js"></script>
<title>{{ site.title }}</title>
{% feed_meta %}
{% seo %}
</head>
<body id='index_body'>
<div id='index_content'>
{% include /index/hat.html %}
<main id='index_main'>
{% include /index/header.html %}
{% for block in site.data.skills %}
<div class='stats_block'>
<div class='stats_bar'><h6 class='stats_h'>{{ block.name }}</h6></div>
<section class='stats_section'>
{% include /index/table.html %}
</section>
</div>
{% endfor %}
<div class='stats_block'>
<div class='stats_bar'><h6 class='stats_h'>character description</h6></div>
<section class='stats_section'>
{% include /index/description.html %}
</section>
</div>
</main>
{% include /index/footer.html %}
</div>
</body>
</html>