-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathindex.html
133 lines (107 loc) · 3.67 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
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html>
<head>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-FKZP7LPS4X"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-FKZP7LPS4X");
</script>
<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 {
--theme-color : #006C9E;
--base-font-size : 14px;
--content-max-width: 60em;
--sidebar-width: 20rem;
}
/* Top nav bar - Plugin */
nav {
}
nav a {
display:inline-block;
padding:0px 10px;
color:#006C9E;
}
nav a:hover {
text-decoration:underline;
}
.markdown-section > div:first-child {
float:right;
padding-top:38px;
}
.markdown-section a:hover {
color:#006C9E;
}
.markdown-section > div:first-child a {
text-decoration:none !important;
}
</style>
<script type="text/javascript">window.$crisp=[];window.CRISP_WEBSITE_ID="-K4sjRan9gm59MvONQG-";(function(){d=document;s=d.createElement("script");s.src="https://client.crisp.chat/l.js";s.async=1;d.getElementsByTagName("head")[0].appendChild(s);})();</script>
</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,
routerMode: 'history',
alias: {
"/.*/_sidebar.md": "/_sidebar.md",
'/.*/_navbar.md': '/_navbar.md',
},
loadNavbar: true,
repo: 'leantime/docs/',
name: 'Leantime',
logo: '/_images/leantime-gradient-logo-350-100-transparent.webp',
relativePath: false,
themeable: {
readyTransition: true, // default
responsiveTables: true, // default
},
auto2top : true,
maxLevel : 3,
subMaxLevel: 2,
plugins: [
],
search: {
maxAge: 1000, // 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
pagination: {
previousText: 'previous',
// or
nextText: 'next',
crossChapter: true,
crossChapterText: true,
},
}
</script>
<script src="https://cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/js/docsify-themeable.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/search.js"></script>
<script src="https://unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script src="https://unpkg.com/docsify-copy-code@2"></script>
<script src="//unpkg.com/prismjs/components/prism-php.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-json.min.js"></script>
</body>
</html>