forked from NotwoJack/EVE-Exploration-Guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (79 loc) · 2.49 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>EVE Exploration Guide</title>
<link rel="icon" href="image/icon.png">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<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="//cdn.jsdelivr.net/npm/docsify/lib/themes/vue.css">
<!-- <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/lib/themes/buble.css">-->
<!-- <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/lib/themes/dark.css">-->
<!-- <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/lib/themes/pure.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>
<nav data-cloak>
<a href="#/">中文</a>
<a href="#/en/">EN</a>
</nav>
<div id="app">Loading...</div>
<script>
window.$docsify = {
name: 'EVE Exploration Guide',
// repo: 'https://github.com/NotwoJack/EVE-Exploration-Guide',
// relativePath: true,
// loadSidebar: true,
// subMaxLevel: 5,
// homePage:'EVE-Exploration-Guide.md',
auto2top: true,
coverpage: ['/', '/en/'],
onlyCover: true,
search: {
noData: {
'/': '没有结果!',
'/en/': 'No results!',
},
paths: 'auto',
placeholder: {
'/': '搜索',
'/en/': 'Search',
}
},
// 点击标题跳转,按照路由切换
nameLink: {
'/en/': '#/en/',
'/': '',
},
darkMode: {
dark: {
background: "#1c2022",
toggleBtnBg: "#34495e",
textColor: "#b4b4b4"
},
light: {
background: "white",
toggleBtnBg: "var(--theme-color)",
textColor: "var(--theme-color)"
}
}
}
</script>
<!--<script src="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/index.min.js"></script>-->
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TXHGQ675QD"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-TXHGQ675QD');
</script>
</body>
</html>