-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
88 lines (80 loc) · 3.28 KB
/
blog.html
File metadata and controls
88 lines (80 loc) · 3.28 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>我的个人博客 - 博客文章</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<header>
<div class="container">
<h1>我的博客</h1>
<p>分享我的思考与经验</p>
</div>
</header>
<nav>
<div class="container">
<ul>
<li><a href="index.html">首页</a></li>
<li><a href="blog.html" class="active">博客</a></li>
<li><a href="about.html">关于我</a></li>
<li><a href="contact.html">联系方式</a></li>
</ul>
</div>
</nav>
<main>
<div class="container">
<section class="blog-posts">
<h2>所有文章</h2>
<div class="post-filters">
<span>分类:</span>
<a href="#" class="active">全部</a>
<a href="#">技术</a>
<a href="#">生活</a>
<a href="#">思考</a>
<!-- 添加更多你的博客分类 -->
</div>
<div class="post-list">
<!-- 在这里添加你的博客文章列表 -->
<article class="post-item">
<div class="post-date">
<span class="day">04</span>
<span class="month">03</span>
<span class="year">2025</span>
</div>
<div class="post-content">
<h3><a href="posts/first-post.html">第一篇博客文章</a></h3>
<div class="post-meta">
<span class="category"><i class="fas fa-folder"></i> 技术</span>
<span class="comments"><i class="fas fa-comments"></i> 3条评论</span>
</div>
<p>摘要</p>
<a href="posts/first-post.html" class="read-more">阅读全文 <i class="fas fa-arrow-right"></i></a>
</div>
</article>
<!-- 可以添加更多的文章 -->
</div>
<div class="pagination">
<a href="#" class="active">1</a>
<a href="#">2</a>
<a href="#">3</a>
<a href="#" class="next"><i class="fas fa-angle-right"></i></a>
</div>
</section>
</div>
</main>
<footer>
<div class="container">
<div class="footer-content">
<div class="social-links">
<a href="https://github.com/BloomFallr"><i class="fab fa-github"></i></a>
</div>
<p>© 2025 我的个人博客. 保留所有权利。</p>
</div>
</div>
</footer>
<script src="js/script.js"></script>
</body>
</html>