-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
76 lines (70 loc) · 2.86 KB
/
blogs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>blog</title>
<!-- 公共样式文件 -->
<link rel="stylesheet" href="./css/public.css">
<link rel="stylesheet" href="css/header.css">
<!-- 博客样式文件 -->
<link rel="stylesheet" href="./css/blogs.css">
<!-- iconfont图标样式文件 -->
<link rel="stylesheet" href="//at.alicdn.com/t/c/font_3557929_p0ej870bzz.css">
<!-- -->
<link href="https://cdn.jsdelivr.net/npm/font-awesome/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<div class="loading-div">
<i class="fa fa-spinner fa-pulse fa-3x fa-fw "></i>
<span class="sr-only">Loading...</span>
</div>
<!-- 导航栏 -->
<header id="top-header"></header>
<!-- blog section头部样式-->
<main>
<header id="banner">
<div class="inner-banner container">
<h1 class="title">tiro's blog</h1>
<h5 class="subtitle">一寸光阴不可轻,只争朝夕与全功。</h5>
</div>
</header>
<div id="blog" class="page ">
<div class="article-wrap flex wrap">
<!-- <article>
picture作为a标签可以点击
<a href="#"><img src="pictures/portrait.png" alt=""></a>
标题摘要
<div class="content-wrap">
<a href="#">
<h3>大标题大标题大标题</h3>
</a>
<p>jjf dji jdlajio jdklajiemjla03emi od09mefqwe whjiojf0jis js jjf dji jdlajio jdklajiemjla03emi
od09mefqwe
whjiojf0jis jsjjf dji jdlajio jdklajiemjla03emi od09mefqwe whjiojf0jis js jjf dji jdlajio
jdklajiemjla03emi od09mefqwe
whjiojf0jis js
</p>
<div id="see-more" class="flex wrap">
<span class="date"><i class="iconfont icon-clock"></i>2022-07-21</span>
<a class="more" href="#">查看更多<i class="iconfont icon-arrowright"></i></a>
</div>
</div>
</article>
-->
</div>
</div>
<!-- ======= Footer ======= -->
<footer>© Copyright tiro. All Rights Reserved </footer><!-- End Footer -->
</main>
</body>
<!-- -->
<script src="https://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- 导航栏文件 -->
<script src="./JS/header.js"></script>
<!-- axios -->
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<!-- 主文件 -->
<script src="./JS/blogs.js"></script>
</html>