-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpage.html
45 lines (43 loc) · 1.52 KB
/
page.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
<!DOCTYPE HTML>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="Stylesheet" type="text/css" href="/css/style.css">
<link rel="Stylesheet" type="text/css" href="/css/tango.css">
<link rel="Stylesheet" type="text/css" href="/css/github-markdown.css">
<title>{blog_name}</title>
<script src="/config.js"></script>
<script src="/util.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-139883805-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){{dataLayer.push(arguments);}}
gtag('js', new Date());
gtag('config', 'UA-139883805-2');
</script>
</head>
<body>
<div id="header">
<div id="post-nav">
<a href="/">首页</a>
<a href="/about.html">关于</a>
<a href="/sitemap.html">所有文章</a>
</div>
</div>
<div id="container">
<div id="title">{title}</div>
<div id="content" class="markdown-body">
{content}
</div>
<div id="comment">
{comment}
</div>
</div>
<div id="footer"></div>
</body>
<script type="text/javascript">
setFooter();
</script>
</html>