forked from anzzstuff/kanaquiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (37 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
.app-update {
display: none;
position: fixed;
bottom: 0;
background: #d9534f;
border: 1px #b42c27 solid;
color: #fff;
min-height: 50px;
border-radius: 5px;
width: 100%;
}
.app-update.show { display: block; }
.avoidwrap { display: inline-block; }
</style>
<title>Kana Pro: Learn hiragana & katakana fast and easy</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="Description" content="Application for studying hiragana & katakana characters.">
</head>
<body>
<div id="app"></div>
<button id="app-update" class="app-update">
<span class="avoidwrap">New version is available!</span>
<span class="avoidwrap">Click here to update.</span>
</button>
<script
defer
async
src="<%= htmlWebpackPlugin.files.chunks.main.entry %>"
></script>
</body>
</html>