-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (60 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>celltek RESTful Documentation</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta charset="UTF-8">
<link rel="stylesheet" href="//unpkg.com/docsify-themeable/dist/css/theme-simple-dark.css">
<link rel="stylesheet" href="custom.css">
<script src="//unpkg.com/docsify-plugin-codefund/index.js"></script>
<style>
nav.app-nav li ul {
min-width: 100px;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'celltek RESTful Documentation',
alias: {
'/.*/_sidebar.md': '/_sidebar.md',
'/.*/_navbar.md': '/_navbar.md'
},
search: 'auto',
search: {
paths: 'auto',
placeholder: 'Suchen',
noData: 'Nichts gefunden',
paths: 'auto'
},
logo: 'https://cdn.celltek.info/domains/global/images/512x512.png',
loadNavbar: false,
loadSidebar: true,
mergeNavbar: true,
themeColor: '#4dbde2',
auto2top: true,
maxLevel: 4,
subMaxLevel: 1,
formatUpdated: '{MM}/{DD} {HH}:{mm}',
tabs: {
persist: true, // default
sync: true, // default
theme: "classic", // default
tabComments: true, // default
tabHeadings: true // default
},
markdown: {
smartypants: true
},
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/[email protected]/dist/docsify-copy-code.min.js"></script>
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-tabs@1"></script>
</body>
</html>