-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
74 lines (60 loc) · 3.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="manifest" href="/manifest.webmanifest">
<link rel="apple-touch-icon" href="/apple-touch-icon.png"/>
<meta name="description" content="spaced repetition flashcard system with offline support" />
<!-- Must -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="keywords" content="spaced repetition, flashcard system, spaced repetition flashcard system, anki, wanki, offline, shared decks, open source, open sourced, free, unofficial">
<!-- Android -->
<meta name="theme-color" content="#374151">
<meta name="mobile-web-app-capable" content="yes">
<!-- iOS -->
<meta name="apple-mobile-web-app-title" content="Wanki">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<!-- Pinned Sites -->
<meta name="application-name" content="Wanki">
<meta name="msapplication-tooltip" content="spaced repetition flashcard system with offline support">
<meta name="msapplication-starturl" content="/">
<!-- Tap highlighting -->
<meta name="msapplication-tap-highlight" content="no">
<!-- UC Mobile Browser -->
<meta name="full-screen" content="yes">
<meta name="browsermode" content="application">
<!-- Orientation -->
<meta name="screen-orientation" content="portrait">
<!-- Google / SEO -->
<meta itemprop="name" content="Wanki" />
<meta itemprop="description" content="spaced repetition flashcard system with offline support" />
<!--Insert url for image to be used in search results-->
<meta itemprop="image" content="/images/icons/icon-192x192.png" />
<!-- facebook -->
<!-- url of site-->
<meta property="og:url" content="" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Wanki" />
<meta property="og:description" content="spaced repetition flashcard system with offline support" />
<!-- url for image in facebook share post-->
<meta property="og:image" content="/images/icons/icon-192x192.png" />
<!-- twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Wanki" />
<meta name="twitter:description" content="spaced repetition flashcard system with offline support" />
<!-- url for image in twitter share post-->
<meta name="twitter:image" content="/images/icons/icon-192x192.png" />
<title>Wanki</title>
</head>
<body>
<div id="app" class="h-full"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>