-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
132 lines (100 loc) · 4.94 KB
/
Copy pathindex.html
File metadata and controls
132 lines (100 loc) · 4.94 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Title -->
<title>Jiayi Blog</title>
<!-- Icon -->
<link rel="icon" href="https://d33wubrfki0l68.cloudfront.net/6657ba50e702d84afb32fe846bed54fba1a77add/827ae/logo.svg">
<!-- Fonts -->
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital@0;1&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap" as="style" onload="this.onload=null, this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital@0;1&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap"></noscript>
<!-- Style -->
<link rel="stylesheet" href="/styles/main.css">
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/hexo-theme-pure@1.0.1/dist/main.css"> -->
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<meta name="generator" content="Hexo 7.3.0"></head>
<body>
<div class="main gt-bg-theme-color-first">
<div class="main-content">
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="/">
<img class="user-avatar" src="https://d33wubrfki0l68.cloudfront.net/6657ba50e702d84afb32fe846bed54fba1a77add/827ae/logo.svg" alt="头像">
<div class="site-name gt-c-content-color-first">
Jiayi Blog
</div>
</a>
<button aria-label="Navbar Toggler" class="navbar-toggler" type="button" id="changeNavbar">
<i class="gt-c-content-color-first" style="font-size: 18px;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18px" fill="currentColor">
<path d="M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" />
</svg>
</i>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<div class="navbar-nav mr-auto" style="text-align: center; ">
<div class="nav-item">
<a href="/" class="menu gt-a-link" target="_self">首页</a>
</div>
<div class="nav-item">
<a href="/archives/" class="menu gt-a-link" target="_self">归档</a>
</div>
<div class="nav-item">
<a href="/tags/" class="menu gt-a-link" target="_self">标签</a>
</div>
<div class="nav-item">
<a href="/friends/" class="menu gt-a-link" target="_self">友链</a>
</div>
</div>
</div>
</nav>
<script>
/* 移动端导航栏展开/收起切换 */
document.getElementById('changeNavbar').onclick = function() {
let element = document.getElementById('navbarSupportedContent');
if (element.style.display === 'none' || element.style.display === '') {
element.style.display = 'block';
} else {
element.style.display = 'none';
}
}
</script>
<div class="post-list-container">
<div class="post-inner">
<article class="post gt-bg-theme-color-second">
<div class="post-left">
<a href="/2025/03/08/hello-world/">
<span class="post-title gt-c-content-color-first">Hello World</span>
</a>
<div class="gt-post-content post-abstract gt-c-content-color-second">
<p></p>
</div>
<div class="post-info">
<span>
<time class="post-time gt-c-content-color-first">
· 2025-03-08 ·
</time>
</span>
</div>
</div>
</article>
</div>
</div>
<div class="pagination-container">
</div>
<div class="site-footer gt-c-content-color-first">
<div class="footer-main">
<!-- 建议保留版权信息或者添加主题信息到友链,感谢您的理解 -->
<!-- 文件位置:layout/_includes/footer.ejs -->
<span style="text-align: right; float: right;">Theme <a
href="https://github.com/renbaoshuo/hexo-theme-pure" target="_blank">Pure</a> | Powered by <a
href="https://hexo.io" target="_blank">Hexo</a></span>
<span style="text-align: left;">Footer HTML
</span>
</div>
</div>
</div>
</div>
</body>
</html>