forked from udo1to/atrocore-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
143 lines (125 loc) · 4.68 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
134
135
136
137
138
139
140
141
142
143
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<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="icon" href="https://cdn.atrocore.com/theme/zinit/img/favicon/favicon.ico" type="image/x-icon" />
<link rel="icon" type="image/png" sizes="32x32" href="https://cdn.atrocore.com/theme/zinit/img/favicon/favicon-32x32px.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://cdn.atrocore.com/theme/zinit/img/favicon/favicon-16x16px.png">
<link rel="icon" type="image/png" sizes="48x48" href="https://cdn.atrocore.com/theme/zinit/img/favicon/favicon-48x48px.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css">
<!--<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/toc.css">-->
</head>
<body>
<style>
#google_translate_element {
background:#d2dde4;
}
.skiptranslate {
/* padding:5px 120px; */
text-align: right;
}
.skiptranslate div {
display:inline;
margin-right:12px;
}
h1.app-name {
padding-top:20px;
}
.sidebar-toggle-button {
top:30px !important;
}
div.skiptranslate span {
display:none;
}
.goog-te-gadget {
padding-right:80px;
}
div.skiptranslate iframe {
background:#d2dde4;
}
div.skiptranslate iframe html body table {
background:#d2dde4;
}
</style>
<div id="google_translate_element"></div>
<div id="app"></div>
<script src="//cdn.jsdelivr.net/npm/docsify-edit-on-github"></script>
<script>
window.$docsify = {
repo: 'atrocore/docs',
auto2top: true,
coverpage: true,
executeScript: true,
loadSidebar: true,
loadNavbar: false,
//mergeNavbar: true,
loadFooter: true,
maxLevel: 4,
subMaxLevel: 3,
name: 'Help Center',
relativePath: true,
search: 'auto', // default
//search : [
// '/', // => /README.md
// '/guide', // => /guide.md
// '/get-started', // => /get-started.md
// '/zh-cn/', // => /zh-cn/README.md
//],
// complete configuration parameters
search: {
maxAge: 86400000, // 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
// To avoid search index collision
// between multiple websites under the same domain
namespace: 'help',
// Use different indexes for path prefixes (namespaces).
// NOTE: Only works in 'auto' mode.
//
// When initialiazing an index, we look for the first path from the sidebar.
// If it matches the prefix from the list, we switch to the corresponding index.
//pathNamespaces: ['/de']
},
toc: {
tocMaxLevel: 4,
target: 'h2, h3, h4, h5, h6'
},
plugins: [
EditOnGithubPlugin.create('https://github.com/atrocore/docs/blob/master/', 'https://github.com/atrocore/docs/edit/master/', 'Edit on GitHub')
],
matomo: {
host: 'https://matomo.atrocore.com/',
id: 6,
}
}
</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://unpkg.com/docsify-plugin-toc"></script>
<script src="https://help.atrocore.com/search.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@alertbox/docsify-footer/dist/docsify-footer.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-bash.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-markdown.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/matomo.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-nginx.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-php.min.js"></script>
<!--<script src="https://unpkg.com/[email protected]/dist/toc.js"></script>-->
<!--<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/search.min.js"></script>-->
<script>
function googleTranslateElementInit() {
new google.translate.TranslateElement(
{pageLanguage: 'en'},
'google_translate_element'
);
}
</script>
<script src="https://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
</body>
</html>