This repository has been archived by the owner on May 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
131 lines (113 loc) · 6.02 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<!-- ===============================================-->
<!-- Document Title-->
<!-- ===============================================-->
<title>EasyNav</title>
<!-- ===============================================-->
<!-- Stylesheets-->
<!-- ===============================================-->
<link href="assets/css/styles.css" rel="stylesheet" />
<script src="vendors/fontawesome-5.15.3/all.min.js" crossorigin="anonymous"></script>
</head>
<body class="sb-nav-fixed">
<!-- ===============================================-->
<!-- Main Content-->
<!-- ===============================================-->
<nav class="sb-topnav navbar navbar-expand navbar-dark bg-dark">
<!-- Sidebar Toggle-->
<button class="btn btn-link btn-sm order-1 order-lg-0 ms-4 me-lg-0" id="sidebarToggle" href="#!"><i class="fas fa-bars"></i></button>
<!-- Navbar Brand-->
<div class="nav-brand">
<a class="navbar-brand ps-3" href="#!">
<img class="me-2" src="assets/icon/CYKD.png" alt="" width="40">
EasyNav
</a>
</div>
<!-- Navbar Search-->
<div class="d-none d-md-inline-block form-inline ms-auto me-0 me-md-3 my-2 my-md-0"></div>
<!-- Navbar-->
<ul class="navbar-nav ms-auto ms-md-0 me-3 me-lg-4">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarDropdown" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"><i class="fas fa-user fa-fw"></i></a>
<ul class="dropdown-menu dropdown-menu-end text-center" aria-labelledby="navbarDropdown">
<li class="text-black-50">
<a class="dropdown-item" href="https://github.com/dolaCmeo/EasyNav" target="_blank">
<span class="fab fa-github me-1"></span>
<span>点个赞!</span>
</a>
</li>
<li><hr class="dropdown-divider" /></li>
<li><a class="dropdown-item" href="#!" onclick="makeEasyNav()">导航页</a></li>
<li><a class="dropdown-item" href="config.json" target="_blank">当前设置</a></li>
<li><a class="dropdown-item" href="#!" onclick="showMdDoc()">设置说明</a></li>
<li><a class="dropdown-item" href="#!" onclick="showMdDoc('remark')">参考资料</a></li>
</ul>
</li>
</ul>
</nav>
<div id="layoutSidenav">
<div id="layoutSidenav_nav">
<nav class="sb-sidenav accordion sb-sidenav-dark" id="sidenavAccordion">
<div class="sb-sidenav-menu">
<!-- 快捷连接区域 START-->
<div class="nav" id="navBar"></div>
<!-- 快捷连接区域 END -->
</div>
<div class="sb-sidenav-footer">
<div class="small">design by: <a href="https://github.com/dolaCmeo" target="_blank" style="color: #ddd;text-decoration-line: none;">@dolaCmeo</a></div>
<i class="fab fa-github pe-1"></i>
<a href="https://github.com/dolaCmeo/EasyNav" target="_blank" style="color: #ddd;text-decoration-line: none;">EasyNav@github</a>
</div>
</nav>
</div>
<div id="layoutSidenav_content">
<main>
<!-- 主要内容区域 START-->
<div class="container-fluid px-4" id="appArea"></div>
<!-- 主要内容区域 END -->
</main>
<footer class="py-4 bg-light mt-auto">
<div class="container-fluid px-4">
<div class="d-flex align-items-center justify-content-between small">
<div class="text-muted">Copyright © EasyNav 2022</div>
<div>
<a href="#">Privacy Policy</a>
·
<a href="#">Terms & Conditions</a>
</div>
</div>
</div>
</footer>
</div>
</div>
<!-- ===============================================-->
<!-- End of Main Content-->
<!-- ===============================================-->
<!-- ===============================================-->
<!-- JavaScripts-->
<!-- ===============================================-->
<script>
window.addEventListener('DOMContentLoaded', event => {
const sidebarToggle = document.body.querySelector('#sidebarToggle');
if (sidebarToggle) {
sidebarToggle.addEventListener('click', event => {
event.preventDefault();
document.body.classList.toggle('sb-sidenav-toggled');
localStorage.setItem('sb|sidebar-toggle', document.body.classList.contains('sb-sidenav-toggled'));
});
}
});
</script>
<script src="vendors/bootstrap-5.1.3/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
<script src="assets/js/template-web.min.js"></script>
<script src="assets/js/EasyNav.js"></script>
<script src="vendors/markdown-it-12.3.2/markdown-it.min.js"></script>
</body>
</html>