-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (53 loc) · 1.55 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
<!-- index.html -->
<!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="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css">
<style>
.sidebar-nav a::before
{
content: "" !important;
margin: auto;
}
:root
{
--table-row-even-background: hsl(201, 18%, 13%)/*var(--mono-shade3)*/
}
</style>
</head>
<body>
<div id="app"></div>
<!-- Docsify -->
<script src="https://unpkg.com/docsify/lib/docsify.min.js"></script>
<!-- Edit on github plugin -->
<script src="https://unpkg.com/docsify-edit-on-github/index.js"></script>
<!-- Docsify settings -->
<script>
window.$docsify = {
name: 'Flux:: Template Documentation',
loadSidebar: true,
alias: {
'/_sidebar.md': '/sidebar.md'
},
subMaxLevel: 4,
homepage: 'documentation/0_Homepage.md',
auto2top: true,
plugins: [
EditOnGithubPlugin.create("https://github.com/FLUX-SE/template_doc/blob/master/", null, null)
],
footer: {
copy: '<span>FLUX:: SE © 2020 | </span>',
pre: '<hr/>',
style: 'text-align: right;'
}
}
</script>
<!-- Footer plugin -->
<script src="https://unpkg.com/docsify-footer-enh/dist/docsify-footer-enh.min.js"></script>
<!-- Search plugin -->
<script src="https://unpkg.com/docsify/lib/plugins/search.min.js"></script>
</body>
</html>