forked from movestore/movestore.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (94 loc) · 3.03 KB
/
index.html
File metadata and controls
99 lines (94 loc) · 3.03 KB
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
<!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="//cdn.jsdelivr.net/npm/docsify@4/themes/vue.css" />
<!-- plugins -->
<!-- for collapsing sidebar -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify-sidebar-collapse/dist/sidebar.min.css" />
<!-- enables anchor links (kudos: https://github.com/docsifyjs/docsify/issues/351#issuecomment-528318227) -->
<script src="https://cdn.jsdelivr.net/gh/rizdaprasetya/docsify-fix-pageload-scroll@master/index.js"></script>
<title>MoveApps User Manual</title>
</script>
<style type="text/css">
.app-name-link > img {
max-width: 60%;
}
.content {
overflow: auto;
}
.sidebar-nav {
padding-left: 8px;
}
/* |--- Searchbox below sitename ---| */
.search {
position: absolute;
width: 100%;
top: 70px;
border-top: 1px solid #EEEEEE;
z-index: 10;
background-color: #FFFFFF;
}
.sidebar > h1 {
position: absolute;
top: 20px;
left: 0;
width: 100%;
}
.sidebar-nav {
position: absolute;
width: 100%;
top: 130px;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'MoveApps',
logo: 'files/logo.png',
basePath: '/',
alias: {
'/.*/_navbar.md': '/_navbar.md',
'/.*/_sidebar.md': '/_sidebar.md',
'/de-de/(.*)': '/$1',
},
loadSidebar: true,
subMaxLevel: 1,
sidebarDisplayLevel: 1, // set sidebar display level
loadNavbar: true,
search: {
maxAge: 86400000, // Expiration time, the default one day
paths: 'auto', // or 'auto'
// Localization
placeholder: {
'/de/': 'Suche',
'/': 'Type to search'
},
// Localization
noData: {
'/de/': 'Keine Ergebnisse',
'/': 'No Results'
},
// Headline depth, 1 - 6
depth: 2,
hideOtherSidebarContent: false, // whether or not to hide other sidebar content
// To avoid search index collision
// between multiple websites under the same domain
namespace: 'moveapps',
},
plugins: [
DocsifyPageloadScrollPlugin.create({isDebug: false, scrollDelay: 500})
]
};
</script>
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<!-- plugins -->
<!-- for collapsing sidebar -->
<script src="//cdn.jsdelivr.net/npm/docsify-sidebar-collapse/dist/docsify-sidebar-collapse.min.js"></script>
</body>
</html>