-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
43 lines (41 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
<!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">
<title>The List</title>
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/themes/vue.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/style.min.css" title="docsify-darklight-theme" type="text/css" />
</head>
<body>
<noscript>This page requires JavaScript to work, please enable it or just read it on <a href="https://github.com/imq/awesome-projects">Here</a>.</noscript>
<div id="app">Loading...</div>
<script>
window.$docsify = {
name: '@Home',
relativePath: true,
repo: 'imq/awesome-projects/',
maxLevel: 6,
subMaxLevel: 3,
loadSidebar: 'Sidebar.md',
//coverpage: 'cover.md',
search: {
depth: 5,
paths: [
'./doc/hep/README.md', './doc/developer/README.md', './doc/sysadmin/README.md','./doc/microservices/README.md'
],
},
darklightTheme: {
siteFont : 'Source Sans Pro, Helvetica Neue',
defaultTheme : 'dark',
codeFontFamily : 'Roboto Mono, Monaco, courier, monospace',
bodyFontSize: '15px',
}
}
</script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/index.min.js" type="text/javascript"></script>
</body>
</html>