-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (35 loc) · 944 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
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta charset="UTF-8">
<link rel="stylesheet" href="/css/wikify.css">
<script src="/js/netlify-identity-widget.js"></script>
<script>
if (window.netlifyIdentity) {
window.netlifyIdentity.on("init", user => {
if (!user) {
window.netlifyIdentity.on("login", () => {
document.location.href = "/manage/";
});
}
});
}
</script>
</head>
<body>
<div id="app"></div>
<script>
window.$wikify = {
name: '',
repo: '',
// loadNavbar: 'navbar.md',
loadSidebar: true,
subMaxLevel: 4
}
</script>
<script src="/js/wikify.js"></script>
<script src="plugins/search/search.js"></script>
</body>
</html>