-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (63 loc) · 1.57 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
<!-- index.html -->
<!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"
/>
<link rel="stylesheet" href="style.css">
<title>Jimber SASE Platform - Documentation</title>
<style>
.sidebar-logo {
text-align: center;
padding: 20px 0;
}
.sidebar-logo img {
z-index: 200;
max-width: 180px;
position: fixed;
right: 20px;
top: 20px;
height: auto;
}
</style>
</head>
<body>
<div class="sidebar-logo">
<img src="logo.png" alt="Logo">
</div>
<div id="app">
</div>
<script>
window.$docsify = {
search: 'auto', // default
subMaxLevel: 1,
logo: 'logo.png', // Add your logo path here
el: "#app",
repo: './',
loadSidebar: true,
'flexible-alerts': {
style: 'flat'
},
plugins: [
function (hook, vm) {
hook.afterEach(function(html, next) {
// Scroll to top
document.documentElement.scrollTop = 0;
document.body.scrollTop = 0;
next(html);
});
}
]
}
</script>
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="https://unpkg.com/docsify-plugin-flexible-alerts"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-tabs@1"></script>
</body>
</html>