-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (53 loc) · 1.44 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="robots" content="noindex, nofollow">
<title>Swanix Design System</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<!-- Favicon -->
<link rel="shortcut icon" href="assets/images/favicon.ico">
<link rel="apple-touch-icon" sizes="114x114" href="assets/images/apple-touch-icon.png" />
<!-- Styles -->
<link href="https://cdn.jsdelivr.net/gh/swanix/tool-docs/dist/tool-docs.min.css" rel="stylesheet">
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: "Swanix",
repo: 'swanix/ui',
// themeColor: 'royalblue',
basePath: 'content/',
coverpage: '_site-cover.md',
onlyCover: true,
homepage: '_site-home.md',
loadSidebar: '_site-menu.md',
subMaxLevel: 2,
auto2top: true,
notFoundPage: false,
pagination: {
previousText: 'Previous',
nextText: 'Next',
crossChapter: true
},
plugins: [
function(hook, vm) {
hook.doneEach(function() {
codePreviewCssFile = "dist/swanix.min.css";
codePreviewCssFile2 = "";
codePreviewJsFile = "";
});
}
]
};
</script>
<!-- Tool Docs -->
<script src="assets/js/menu.js"></script>
<script src="https://cdn.jsdelivr.net/gh/swanix/tool-docs/dist/tool-docs.min.js"></script>
<script>
createMenu();
</script>
</body>
</html>