-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
48 lines (43 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>TuxLab</title>
<meta name="description" content="TuxLab Project">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/docsify/3.6.6/themes/buble.css">
<!-- Custom Style -->
<link rel="icon" type="image/png" sizes="32x32" href="tuxlab-assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="tuxlab-assets/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="tuxlab-assets/favicon/favicon-16x16.png">
<meta name="theme-color" content="#46a5dd">
<link rel="stylesheet" href="tuxlab.css">
</head>
<body>
<nav>
</nav>
<div id="app"></div>
</body>
<script>
window.$docsify = {
name: 'TuxLab',
repo: 'https://github.com/learnlinux/',
coverpage: true,
loadSidebar: true,
homepage: 'index.md',
themeColor: '#46a5dd',
markdown: {
gfm: true,
tables: true,
smartypants: true,
sanitize: false
}
}
</script>
<script src="https://cdn.jsdelivr.net/docsify/3.6.6/lib/docsify.min.js"></script>
<script src="https://cdn.jsdelivr.net/docsify/3.6.6/lib/plugins/zoom-image.min.js"></script>
<script src="https://cdn.jsdelivr.net/docsify/3.6.6/lib/plugins/search.min.js"></script>
<script src="https://cdn.jsdelivr.net/prism/1.6.0/components/prism-bash.min.js"></script>
<script src="https://cdn.jsdelivr.net/prism/1.6.0/components/prism-yaml.min.js"></script>
<script src="https://cdn.jsdelivr.net/prism/1.6.0/components/prism-typescript.min.js"></script>
</html>