-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
60 lines (49 loc) · 1.86 KB
/
template.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title id="site-name"></title>
<link rel="stylesheet" href="styles/main.css" />
<!-- Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" />
<!-- Markdown to HTML conversion-->
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<!-- Syntax highlighting -->
<link rel="stylesheet" href="https://unpkg.com/@highlightjs/cdn-assets@11.9.0/styles/paraiso-dark.min.css" />
<script src="https://unpkg.com/@highlightjs/cdn-assets@11.9.0/highlight.min.js"></script>
<script src="https://unpkg.com/@highlightjs/cdn-assets@11.9.0/languages/go.min.js"></script>
<script src="scripts/load_elements.js"></script>
<script src="scripts/load_site_info.js"></script>
<script src="scripts/load_page.js"></script>
<script src="scripts/scroll.js"></script>
</head>
<body>
<div id="navbar"></div>
<!-- Main part of page -->
<div class="main-content">
<div class="main-document">
<div class="content" id="content">
<!--Article will go here-->
</div>
<!-- List of articles and featured ones go here-->
<div id="list-mask" style="display: none">
<div class="article-list">
<h2 class="selection-list-header">
Featured 🌟:
<hr />
</h2>
<!-- Featured items go here -->
<ol id="featured-list" class="selection-list"></ol>
<h2 class="selection-list-header">
All 📚:
<hr />
</h2>
<!-- Featured items go here -->
<ul id="regular-select-list" class="selection-list"></ul>
</div>
</div>
</div>
</div>
<div id="footer"></div>
</body>
</html>