-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
85 lines (85 loc) · 2.8 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
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, shrink-to-fit=no">
<title>React Drive CMS</title>
<link href="/react-drive-cms/assets/css/bootstrap-reboot.css" rel="stylesheet"/>
<link href="/react-drive-cms/assets/css/fa.css" rel="stylesheet" >
<link href="/react-drive-cms/assets/images/favicon.ico" rel="shortcut icon" type="image/x-icon"/>
<script type="text/javascript">
// Credits: Single Page Apps for GitHub Pages
// https://github.com/rafrex/spa-github-pages
// Copyright (c) 2016 Rafael Pedicini, licensed under the MIT License
// ----------------------------------------------------------------------
(function(l) {
if (l.search) {
var q = {};
l.search.slice(1).split('&').forEach(function(v) {
var a = v.split('=');
q[a[0]] = a.slice(1).join('=').replace(/~and~/g, '&');
});
if (q.p !== undefined) {
window.history.replaceState(null, null,
l.pathname.slice(0, -1) + (q.p || '') +
(q.q ? ('?' + q.q) : '') +
l.hash
);
}
}
}(window.location))
</script>
<script async src="/react-drive-cms/assets/js/updater.js"></script>
<script async src="/react-drive-cms/src/app.js" type="module"></script>
<style>
html {
font-size: 10px;
-webkit-tap-highlight-color: transparent;
height: 100%;
overflow-x: hidden;
max-width: 100%;
}
body {
color: #333337;
font-family: 'Droid Serif',serif;
line-height: 1.65;
font-size: 14px;
height: 100vh;
min-height: 100vh;
width: 100vw;
background-color: #fff;
margin: 0;
padding: 0;
overflow-x: hidden;
max-width: 100%;
}
#app-mount {
height: 100vh;
min-height: 100vh;
width: 100vw;
position: relative;
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: 0;
padding: 0;
overflow-x: hidden;
max-width: 100%;
}
a, a:hover, a:focus, a:visited {
text-decoration: none;
background-color: transparent;
outline: 0;
}
a:hover {
transition: all .4s;
}
</style>
</head>
<body>
<div id='app-mount'></div>
</body>
</html>