-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
136 lines (125 loc) · 3.28 KB
/
index.html
File metadata and controls
136 lines (125 loc) · 3.28 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Aard 2</title>
<meta charset="UTF-8" />
<meta name="viewport" content="initial-scale=1.0,width=device-width" />
<meta
name="keywords"
content="offline wikipedia wiktionary wikiquote reader dictionary aard aard2 slob"
/>
<meta
name="description"
content="Dictionary and offline Wikipedia reader."
/>
<style>
body {
font-family: sans-serif;
margin: auto;
line-height: 1.5;
}
a {
color: black;
text-decoration: none;
}
a:visited {
color: #333;
}
a:hover {
text-decoration: underline;
}
#content {
display: flex;
flex-direction: column;
align-content: center;
justify-content: center;
align-items: center;
margin: 1em;
}
#app-logo {
height: 64px;
}
.mi {
margin-right: 5px;
}
.mi:not(:last-child):after {
content: "·";
}
.m {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-self: center;
font-size: 110%;
}
</style>
</head>
<body>
<div id="content">
<div style="display: flex; margin-top: 0.5rem; margin-bottom: 0.5rem">
<img
style="margin-right: 1rem; height: 64px"
src="aard2.svg"
alt="Aard 2 logo"
/>
<div>
<div style="font-size: 36px; margin-top: -0.5rem">Aard 2</div>
<div class="m" style="margin-top: -10px">
<div class="mi">
<a href="http://github.com/itkach/aard2-android">Android</a>
</div>
<div class="mi">
<a href="http://github.com/itkach/aard2-web">Web</a>
</div>
<div class="mi">
<a href="http://github.com/itkach/slob/wiki/Dictionaries">
Dictionaries
</a>
</div>
<div class="mi">
<a href="./forum">Forum</a>
</div>
</div>
</div>
</div>
<hr width="100%" />
<div
style="display: flex; justify-content: center; flex-direction: column"
>
<div style="margin-top: 1rem">🇺🇦 Please donate to help Ukraine:</div>
<ul>
<li>
<a href="https://u24.gov.ua/">UNITED24</a>
</li>
<li>
<a
href="https://www.unicefusa.org/stories/children-eastern-ukraine-fear-future/39547?form=FUNKBHMZQDQ"
>UNICEF</a
>
</li>
<li>
<a href="https://razomforukraine.org/">Razom</a>
</li>
<li>
<a href="https://www.facebook.com/donate/337101825010055/"
>United Help Ukraine</a
>
</li>
<li>
<a href="https://internationalmedicalcorps.org/"
>International Medical Corps</a
>
</li>
<li>
<a href="https://www.projecthope.org/country/ukraine"
>Project HOPE</a
>
</li>
<li>
<a href="https://novaukraine.org/">Nova Ukraine</a>
</li>
</ul>
</div>
</div>
</body>
</html>