-
Notifications
You must be signed in to change notification settings - Fork 60
/
index.html
38 lines (34 loc) · 1.15 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="description" content="Gramps Web - research & organize your family tree together">
<base href="/">
<link rel="stylesheet" href="fonts/fonts.css">
<link rel="stylesheet" href="tippy.css">
<link rel="icon" href="images/favicon.ico">
<link rel="manifest" href="manifest.json" crossorigin="use-credentials">
<meta name="theme-color" content="#6D4C41">
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="Gramps">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar" content="#6D4C41">
<meta name="apple-mobile-web-app-title" content="Gramps">
<link rel="apple-touch-icon" sizes="192x192" href="images/icon192.png">
<style>
html,
body {
margin: 0;
padding: 0;
height: 100%;
}
</style>
<title>Gramps Web</title>
</head>
<body>
<gramps-js></gramps-js>
<script src="config.js"></script>
<script type="module" src="./src/gramps-js.js"></script>
</body>
</html>