forked from Leantime/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (100 loc) · 3.47 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!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="shortcut icon" href="/favicon.ico"/>
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css">
<style>
:root {
--base-font-size: 14px;
--theme-color : #1b75bb;
}
nav {
border-bottom:1px solid #ddd;
}
nav a {
display:inline-block;
padding:0px 10px;
color:#1b75bb;
}
nav a:hover {
color:#333;
}
section.content {
padding-top:12px;
}
.markdown-section > div:first-child {
float:right;
padding-top:38px;
}
.markdown-section a:hover {
color:#1b75bb;
}
.markdown-section > div:first-child a {
text-decoration:none !important;
}
</style>
</head>
<body>
<div data-app id="main">Please wait...</div>
<div id="app"></div>
<script src="//unpkg.com/docsify-edit-on-github/index.js"></script>
<script>
window.$docsify = {
el: '#main',
loadSidebar: true,
loadNavbar: true,
name: 'Leantime',
logo: '/_images/leantime_logo.png',
relativePath: false,
themeable: {
readyTransition : true, // default
responsiveTables: true // default
},
auto2top : true,
maxLevel : 3,
subMaxLevel: 3,
plugins: [
EditOnGithubPlugin.create('https://github.com/Leantime/docs/edit/master/', null, '<img src="_images/icons/github.svg" style="vertical-align: text-bottom"/> Edit on Github'),
function (hook) {
var footer = [
'<hr/>',
'<footer>',
'<span><a href="https://leantime.io">Leantime</a> ©20222. </span>',
'<span>Proudly published with <a href="https://github.com/docsifyjs/docsify/" target="_blank">docsify</a>.</span>',
'</footer>'
].join('')
hook.afterEach(function (html) {
return html + footer
})
}
],
search: {
maxAge: 5000, // Expiration time, the default one day
paths: 'auto', // or 'auto'
placeholder: 'Type to search',
noData: 'No Results!',
// Headline depth, 1 - 6
depth: 6,
hideOtherSidebarContent: false, // whether or not to hide other sidebar content
}, // default
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0"></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="//unpkg.com/prismjs/components/prism-php.min.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-69758446-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-69758446-3');
</script>
</body>
</html>