-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (79 loc) · 3.63 KB
/
index.html
File metadata and controls
88 lines (79 loc) · 3.63 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
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>主页</title>
<base href="/mysite/">
<link rel="icon" type="image/ico" href="icons/favicon.ico">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/global-styles.css">
<link rel="stylesheet" href="css/index-styles.css">
<link rel="stylesheet" href="css/index-main-styles.css">
<link rel="stylesheet" type="text/css" href="css/sourceCode/prism-1.29.0.css">
<link rel="stylesheet" href="css/widgets/binclk.css">
<script src="js/markdown/marked.min.js" async></script>
<script src="js/sourceCode/prism-1.29.0.js" async></script>
<script src="js/widgets/binclk.js" defer></script>
<script src="js/index-nav.js" defer></script>
<script src="js/index-script.js" defer></script>
<script src="js/index-main-script.js" defer></script>
<script src="js/updateCopyright.js" defer></script>
<script src="js/resolvers/changeLogs-resolver.js" defer></script>
<style>
:root {
/* reminder: these are global-styles.css default values, change if needed. */
--folded-container-expanded-max-height: 50vh;
--folded-container-expanded-transition-time-max-height: 0.5s;
--folded-container-expanded-transition-time-padding-top-bottom: 0.6s;
}
</style>
</head>
<body>
<header class="header">
<!-- 时钟会动态显示 -->
<h1 style="flex: 9;">主页</h1>
</header>
<div id="nav-container-0" class="container animation-container" style="display: flex; flex-direction: column; color: wheat;">
<nav id="nav-container" class="container">
<!-- 动态内容将在这里显示 -->
</nav>
</div>
<div id="changeplan-container" class="container" style="color: wheat; min-height: auto;">
<div class="container" style="display: flex; flex-direction: row-reverse;">
<h3 style="flex: 9;">变更计划</h3>
<div class="button-list" style="flex: 1; min-width: fit-content;">
<button type="button" id="hide-changeplan-button" onclick="hideChangePlan()">展开</button>
</div>
</div>
<div id="pre-container-1" class="container folded-container">
<pre id="pre-1" style="max-height: max(26vh, 8vw); border-radius: 5px; scroll-behavior: smooth;">
<code id="changePlans" class="language-none" style="white-space: pre-wrap;">ChangePlans is loading...</code>
</pre>
</div>
</div>
<div id="changelog-container" class="container" style="color: wheat; min-height: auto;">
<div class="container" style="display: flex; flex-direction: row-reverse;">
<h3 style="flex: 9;">变更日志</h3>
<div class="button-list" style="flex: 1; min-width: fit-content;">
<button type="button" id="hide-changelog-button" onclick="hideChangeLog()">展开</button>
</div>
</div>
<div id="changelog-content-container" class="container folded-container responsive-container">
<div id="button-list-0-container" class="container folded-container" style="display: flex; flex-direction: row;">
<div id="button-list-0" class="button-list responsive-button-list">
<button type="button" date="1970.01.01">----.--.--</button>
</div>
</div>
<div id="pre-container-0" class="container folded-container">
<pre id="pre-0" style="max-height: max(26vh, 8vw); border-radius: 5px; scroll-behavior: smooth;">
<code id="changeLogs" class="language-none" style="white-space: pre-wrap;">ChangeLogs is loading...</code>
</pre>
</div>
</div>
</div>
<footer>
<p id="copyright" class="copyright">© <span id="currentYearinCopyright">2024</span> Eric Chan</p>
</footer>
</body>
</html>