-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
141 lines (138 loc) · 3.81 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
---
layout: default
ref: index
lang: English
---
<div id="svgContainer" class="show-for-medium-up" style="">
<svg id="svg1" width="0" height="0" >
<path
id="path-01-02"
d="M0 0"
stroke="#FF7A5E"
fill="none"
stroke-width="7px";/>
<path
id="path-02-03"
d="M0 0"
stroke="#60D4D8"
fill="none"
stroke-width="7px";/>
<path
id="path-03-04"
d="M0 0"
stroke="#FF7A5E"
fill="none"
stroke-width="7px";/>
<path
id="path-02-06"
d="M0 0"
stroke="#60D4D8"
fill="none"
stroke-width="7px";/>
<path
id="path-06-08"
d="M0 0"
stroke="#60D4D8"
fill="none"
stroke-width="7px";/>
<path
id="path-08-11"
d="M0 0"
stroke="#FF7A5E"
fill="none"
stroke-width="7px";/>
<path
id="path-03-07"
d="M0 0"
stroke="#60D4D8"
fill="none"
stroke-width="7px";/>
<path
id="path-04-05"
d="M0 0"
stroke="#FF7A5E"
fill="none"
stroke-width="7px";/>
<path
id="path-07-05"
d="M0 0"
stroke="#FF7A5E"
fill="none"
stroke-width="7px";/>
<path
id="path-07-10"
d="M0 0"
stroke="#FF7A5E"
fill="none"
stroke-width="7px";/>
<path
id="path-08-09"
d="M0 0"
stroke="#FF7A5E"
fill="none"
stroke-width="7px";/>
<path
id="path-09-13"
d="M0 0"
stroke="#60D4D8"
fill="none"
stroke-width="7px";/>
<path
id="path-11-12"
d="M0 0"
stroke="#FF7A5E"
fill="none"
stroke-width="7px";/>
<path
id="path-12-13"
d="M0 0"
stroke="#FF7A5E"
fill="none"
stroke-width="7px";/>
<path
id="path-05-10"
d="M0 0"
stroke="#FF7A5E"
fill="none"
stroke-width="7px";/>
</svg>
</div>
<div id="outer" class="show-for-medium-up">
{% assign posts=site.posts | where:"lang", page.lang %}
{% for post in posts %}
<div id="{{ post.code}}" class="item {{post.top}} {{post.left}}">
<figure>
<a class="neutral" href="{{ post.url | prepend: site.baseurl }}">
<img src="assets/img/{{post.icon}}" alt="">
</a>
<a class="neutral" href="{{ post.url | prepend: site.baseurl }}">
<figcaption class="tiny">
{{ post.title }}
</figcaption>
</a>
</figure>
</div>
{% endfor %}
<div id="kit-intro" class="top-2">
<a href="{{site.baseurl}}/intro.html"><div id="kit"></div></a>
<div id="intro-text" class="tiny pl-14 text-center"><a class="neutral" href="{{site.baseurl}}/intro.html">READ INTRODUCTION ></a></div>
</div>
</div>
<div class="mobile-body text-center hide-for-medium-up">
<img src="assets/img/kit_red_border.png" class="pb-21" alt="">
{% assign posts=site.posts | where:"lang", page.lang %}
{% for post in posts %}
<div class="row pv-14">
<div class="columns small-3">
<a href="{{ post.url | prepend: site.baseurl }}">
<img src="assets/img/{{post.icon}}" alt="">
</a>
</div>
<div class="columns text-left small-9">
<a class="neutral" href="{{ post.url | prepend: site.baseurl }}">
{{ post.title }}
</a>
</div>
</div>
{% endfor %}
</div>