-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (124 loc) · 4.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Seashell Docs</title>
<link rel="icon" href="favicon.ico?v=1.1">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Future-proof edge computing platform">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<script src="//unpkg.com/[email protected]/index.js"></script>
<link
rel="stylesheet"
href="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/style.min.css"
title="docsify-darklight-theme"
type="text/css"
/>
<link rel="stylesheet" href="css/custom.css">
</head>
<body>
<div id="app"></div>
<script>
const title = "Seashell Docs"
const docBase = "."
const docEditBase = "."
window.$docsify = {
name: `
<div class="sidebar-brand">
<img src="assets/logos/logo.svg" alt="" class="sidebar-logo">
<h3>seashell</h3>
</div>`,
repo: 'seashell/platform-docs',
themeColor: 'red',
coverpage: false,
loadNavbar: false,
loadSidebar: "./sidebar.md",
notFoundPage: "./404.md",
auto2top: true,
homepage: 'pages/home.md',
search: {
paths: 'auto',
placeholder: 'Search',
noData: 'No results.'
},
plugins: [
function(hook) {
var footer = [
'<hr/>',
'<footer>',
'<span>Made with ❤ by <a href="https://seashell.sh/" target="_blank">Seashell</a>.</span>',
'</footer>'
].join('');
hook.afterEach(function(html) {
return html + footer;
});
},
],
darklightTheme: {
siteFont : "Roboto",
defaultTheme : 'light',
codeFontFamily : 'monospace',
bodyFontSize : '17px',
plugins: [],
search: {
noData: {
'/': 'No results!'
},
paths: 'auto',
placeholder: {
'/': 'Search'
}
},
formatUpdated: '{MM}/{DD} {HH}:{mm}',
dark: {
accent: '#ffffff',
toogleBackground : '#ffffff',
background: '#131d29',
textColor: '#ffffff',
codeTextColor : '#ffffff',
codeBackgroudColor : '#0e2233',
borderColor : '#444444',
blockQuoteColour : '#858585',
highlightColor : '#00a1ff',
sidebarSublink : '#b4b4b4',
codeTypeColor : '#ffffff',
coverBackground : '#091a28',
toogleImage : 'url(https://cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/icons/sun.svg)'
},
light: {
accent: '#131d29',
toogleBackground : '#091a28',
background: '#fafbfc',
textColor: '#131d29',
codeTextColor : '#525252',
codeBackgroudColor : '#ededed',
borderColor : 'rgba(0, 0, 0, 0.07)',
blockQuoteColor : '#858585',
highlightColor : '#00a1ff',
sidebarSublink : '#b4b4b4',
codeTypeColor : '#091a28',
coverBackground : '#ffffff',
toogleImage : 'url(https://cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/icons/moon.svg)'
}
}
}
</script>
<!-- Required: docsify + docsify-themeable -->
<script src="https://unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="https://unpkg.com/docsify-themeable"></script>
<!-- 6. Docsify Plugins -->
<script src="https://unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs/components/prism-bash.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs/components/prism-hcl.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs/components/prism-markdown.min.js"></script>
<script src="https://unpkg.com/docsify-copy-code"></script>
<script src="https://unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script src="https://unpkg.com/docsify/lib/plugins/zoom-image.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/emoji.min.js"></script>
<script
src="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/index.min.js"
type="text/javascript">
</script>
<script src="https://unpkg.com/docsify-plugin-flexible-alerts"></script>
</body>
</html>