-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.html
72 lines (63 loc) · 1.81 KB
/
notes.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
---
title: 白腾飞博客-随笔
---
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ page.title }}</title>
<link rel="icon" type="image/png" href="/assets/images/favicon.png" />
<link rel="stylesheet" href="/assets/css/homebase.css" />
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9HK8F4W2ZH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-9HK8F4W2ZH');
</script>
<body>
<header>
<div class="logo-container">
<img src="/assets/images/logo.jpg" class="logo" alt="logo">
</div>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/tech">Tech</a></li>
<li style="font-weight: bold; color: #333;"><a href="/notes" class="item-active">Notes</a></li>
<li><a href="/about">About</a></li>
</ul>
</nav>
</header>
<main>
<!--标签区-->
<div class="tags">
<ul>
<li><a href="/notes/reading">#读书笔记</a></li>
<li><a href="/notes/enlightened">#有感</a></li>
</ul>
</div>
{% for post in site.categories.notes %}
<article>
<h1>
<a href="{{ post.url }}">{{ post.title }}</a>
</h1>
<div class="date">
{{ post.date | date: "%-m月%-d日,%Y"}}
</div>
<p class="excerpt">
{{ post.excerpt }}
</p>
</article>
{% endfor %}
</main>
<footer>
<p>
Copyright © baitengfei.com
</p>
</footer>
</body>
</html>