-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.htm
More file actions
70 lines (70 loc) · 3.66 KB
/
index.htm
File metadata and controls
70 lines (70 loc) · 3.66 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
<!DOCTYPE html>
<html>
<head>
<title>Loading maybe...</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Base styles must load first -->
<style type="text/css">@import "styles/page.css";</style>
<style type="text/css">@import "styles/toolbar.css";</style>
</head>
<body id="top">
<div id="toolbar">
<img id="toolbar-logo" class="toolbar-logo-loading" src="/favicon.ico" title="╭( `∀´ )╯" />
<a id="toolbar-home" class="toolbar-icon" href="#/" title="主页">
<svg viewbox="0 0 32 32"><path d="M12 20 L12 30 4 30 4 12 16 2 28 12 28 30 20 30 20 20 Z" /></svg>
</a>
<a id="toolbar-top" class="toolbar-icon" href="#top" title="返回顶部">
<svg viewbox="0 0 32 32"><path d="M30 20 L16 8 2 20" /></svg>
</a>
<a id="toolbar-comments" class="toolbar-icon" href="javascript:;" title="评论区">
<svg viewbox="0 0 32 32"><path d="M2 4 L30 4 30 22 16 22 8 29 8 22 2 22 Z" /></svg>
</a>
<a id="toolbar-code" class="toolbar-icon" href="" title="查看源代码" target="_blank" rel="noopener noreferrer">
<svg viewbox="0 0 32 32"><path d="M10 9 L3 17 10 25 M22 9 L29 17 22 25 M18 7 L14 27" /></svg>
</a>
</div>
<div id="toolbar-error" style="display: none;">
<a class="toolbar-icon"></a>
<a id="toolbar-reload" class="toolbar-icon" href="javascript:;" title="重新加载">
<svg viewbox="0 0 32 32"><path d="M29 16 C29 22 24 29 16 29 8 29 3 22 3 16 3 10 8 3 16 3 21 3 25 6 27 9 M20 10 L27 9 28 2" /></svg>
</a>
<a id="toolbar-cancel" class="toolbar-icon" href="javascript:history.go(-1);" title="取消">
<svg viewbox="0 0 32 32"><path d="M2 30 L30 2 M30 30 L2 2" /></svg>
</a>
</div>
<main>
<div id="contents">
<p>Loading maybe...</p>
</div>
<fieldset id="comments" style="display:none;">
<legend>评论区</legend>
<div id="comments-gitment"></div>
</fieldset>
<div id="footer">
<hr />
<a id="footer-license" href="http://creativecommons.org/licenses/by-sa/4.0/">
<img alt="CC BY-SA 4.0" src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png" />
</a>
Inspired & powered by <a href="https://github.com/ezforever/ezforever.github.io#how-its-made">many projects</a>.
</div>
</main>
<!-- jQuery -->
<script src="https://cdn.jsdelivr.net/npm/jquery"></script>
<!-- script src="https://cdn.jsdelivr.net/npm/jquery-lazyload"></script -->
<!-- highlight.js -->
<style type="text/css">@import "styles/hljs.css";</style>
<script src="https://cdn.jsdelivr.net/npm/highlightjs"></script>
<!-- Marked -->
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<!-- Marked extensions -->
<style type="text/css">@import "styles/markedEx.css";</style>
<script src="markedEx.js"></script>
<!-- Gitment-mod -->
<link rel="stylesheet" href="https://ezforever.github.io/gitment-mod/theme/default.css">
<script src="https://ezforever.github.io/gitment-mod/gitment.browser.js" type="module"></script>
<!-- My own code -->
<script src="config.js"></script>
<script src="page.js"></script>
</body>
</html>