-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 966 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<title>JellyMemo</title>
<link rel="stylesheet" href="css/main.css" type="text/css">
<link rel="stylesheet" href="css/theme-light.css" type="text/css">
</head>
<body>
<div class="main">
<div class="hud">0 / 0</div>
<div class="content"></div>
<div class="actions">
<div class="unknown">unknown</div>
<div class="speak">speak</div>
<div class="known">known</div>
</div>
<script type="text/html" class="phrase-template">
<section class="phrase">
<div class="target">{{target}}</div>
<div class="source">{{source}}</div>
</section>
</script>
<script src="js/util.js"></script>
<script src="js/loader.js"></script>
<script src="js/main.js"></script>
</div>
</body>
</html>