-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (53 loc) · 1.94 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
<!-- 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/themes/dark.css">
<link rel="icon" href="images/logo_icon.svg"/>
<title>TralahTek Software Foundation</title>
</head>
<body>
<style>
#coverpage{
background-image: url('./images/bg.jpg');
};
#app{
background-image: url('./images/bg.jpg');
}
</style>
<div id="app"></div>
<script>
window.$docsify = {
el: "#app",
repo: 'https://github.com/tralahtek/org.tralahtek.com/tree/docsify',
// loadSidebar: true,
loadNavbar: true,
coverpage: true,
logo:"/images/logo_icon.svg",
// disqus:"TralahM",
autoFooter:{
name: 'TralahTek Software Foundation',
url: 'https://tralahm.tralahtek.com',
copyYear:'2020'
// policy:'',
// terms:''
}
};
</script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/emoji.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/external-script.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/zoom-image.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code"></script>
<!-- <script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/disqus.min.js"></script> -->
<!-- CDN files for docsify-katex -->
<script src="//cdn.jsdelivr.net/npm/docsify-katex@latest/dist/docsify-katex.js"></script>
<!-- or <script src="//cdn.jsdelivr.net/gh/upupming/docsify-katex@latest/dist/docsify-katex.js"></script> -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/katex@latest/dist/katex.min.css"/>
<!-- jsDelivr -->
<script src="//cdn.jsdelivr.net/npm/docsify-sidebarfooter"></script>
</body>
</html>