-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 1.94 KB
/
Copy pathindex.html
File metadata and controls
52 lines (52 loc) · 1.94 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>技术加油站</title>
<link rel="shortcut icon" href="/assets/images/logobig.png">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="技术加油站">
<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="/assets/css/themes.vue.css">
<style>main{display: none !important;}</style>
<script src="/assets/js/fuck.js"></script>
</head>
<body>
<div id="app">Please waiting...</div>
<script src="/assets/js/docsify-edit-on-github.js"></script>
<script>
window.__COVERPAGEFLAG__ = false;
window.$docsify = {
loadSidebar: false,
loadNavbar: "",
namespace: 'default',
auto2top: true,
name: false,
// logo:'./assets/images/logo.png',
onlyCover: false,
// coverpage: true,
coverpage: {
'/': './_coverpage.html',
},
plugins: [
function(hook, vm) {
//执行首页script
hook.doneEach(function() {
let tmpScript = document.querySelector('#cover-page script');
if(!tmpScript) return ;
let code = tmpScript.innerText.trim();
if (!code) return;
setTimeout(_ => {
console.log('coverpage script start');
let tmpResult = new Function(code)();
window.__COVERPAGEFLAG__ = true;
}, 0);
});
},
]
};
</script>
<script src="/assets/js/docsify.min.js"></script>
<script src="/assets/js/jquery.min.js"></script>
</body>
</html>