-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog-template.html
executable file
·84 lines (81 loc) · 2.91 KB
/
blog-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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="zh_Hans">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>Saafo's Blog</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
<script src="https://cdn.bootcss.com/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.bootcss.com/marked/1.1.0/marked.min.js"></script>
<script src="https://cdn.bootcss.com/highlight.js/10.1.1/highlight.min.js"></script>
<script src="js/index.js"></script>
<script src="js/blog.js"></script>
<script src="js/md-toc.js"></script>
<!-- <link href="css/github.css" rel="stylesheet"> -->
<link href="https://cdn.bootcss.com/github-markdown-css/4.0.0/github-markdown.css" rel="stylesheet">
<link href="https://cdn.bootcdn.net/ajax/libs/highlight.js/10.1.1/styles/atom-one-dark.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/index.css"/>
<link rel="stylesheet" href="css/blog.css"/>
</head>
<body>
<!-- Navigation -->
<nav class="random-bg-color">
<div class="nav-title">
<ul class="nav-title">
<li>
<a class="nav-title" href="https://saafo.cc">𝔐</a>
</li>
</ul>
</div>
<div class="nav-container">
<ul class="nav-container">
<li>
<a href="/rss.xml">RSS</a>
</li>
<li>
<a href="/about.html">About Me</a>
</li>
</ul>
</div>
</nav>
<!-- Body -->
<!-- Title -->
<div class="title-container random-bg-color shadow">
<h1 id="blog-h1">Saafo's Blog</h1>
</div>
<!-- Content -->
<div class="content-container">
<div class="main-content-container shadow">
<article id="main-content" class="markdown-body">
你可能走错了路,这里并没有任何信息。
</article>
</div>
<aside class="sidebar-container">
<div class="sidebar-content blog-sidebar-content shadow">
<p>Table of Content</p>
<div id="markdown-toc">
Nothing here
</div>
</div>
</aside>
</div>
<!-- Comments -->
<div class="comments-container">
<div class="main-comments-container">
<script src="js/utterances.js"
repo="saafo/homepage"
issue-term="title"
label="💬"
theme="github-light"
crossorigin="anonymous"
async>
</script>
</div>
</div>
<!-- Footer -->
<footer class="footer-container">
<p>Copyright © 2020 Saafo All Rights Reserved</p>
<a href="http://www.beian.miit.gov.cn">蜀ICP备20004658号</a>
</footer>
</body>
</html>