-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (68 loc) · 2.97 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1.0, shrink-to-fit=no, viewport-fit=cover">
<meta name="description" content="A recreation of Super Mario Sunshine in Super Mario Galaxy 2">
<title>Super Mario Starshine</title>
<link rel="icon" href="res/img/favicon.ico">
<!-- Stylesheets -->
<link rel="stylesheet" href="res/css/main.css">
<!-- Alternate Stylesheets -->
<link rel="stylesheet" href="res/css/dark.css" title="Dark" disabled>
<link rel="stylesheet" href="res/css/light.css" title="Light" disabled>
</head>
<body>
<div id="app"></div>
<!-- JavaScript -->
<script>
window.$docsify = {
// GENERAL
// -----------------------------------------------------------------
name : 'Super Mario Starshine',
homepage : 'res/main/index.md',
loadNavbar : 'res/header.md',
mergeNavbar : false,
loadSidebar : 'res/sidebar.md',
relativePath: true,
alias : {
// If any more mods are added, they must be added to here.
'/' : 'res/main/index.md',
'/Main' : 'res/main/index.md',
'/Sidebar' : 'res/sidebar.md',
},
// NAVIGATION
// -----------------------------------------------------------------
auto2top : true,
maxLevel : 4,
subMaxLevel: 4,
// PLUGINS
// -----------------------------------------------------------------
executeScript: true,
search: {
depth : 3,
noData : 'No results!',
placeholder: 'Search...'
},
themeable : {
readyTransition : true,
responsiveTables: true
},
tabs: {
persist : true,
sync : true
}
};
</script>
<script src="res/js/main.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-tabs@latest"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-copy-code@2"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/external-script.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/search.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/zoom-image.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-bash.min.js"></script>
</body>
</html>