-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patharchives.html
More file actions
75 lines (72 loc) · 3.12 KB
/
Copy patharchives.html
File metadata and controls
75 lines (72 loc) · 3.12 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<meta name="referrer" content="no-referrer-when-downgrade">
<title>归档 · 加载中…</title>
<link rel="alternate" type="application/rss+xml" title="RSS" href="rss.xml">
<link rel="stylesheet" href="assets/dist/common.min.css?v=20260627010000">
<link rel="stylesheet" href="assets/dist/home.min.css?v=20260627010000">
<script>(function(){var s=localStorage;var t=s.getItem('blog_theme')||'auto';var d=t==='auto'?(window.matchMedia('(prefers-color-scheme: dark)').matches?'dark':'light'):t;var p=s.getItem('blog_preset')||'jianshu';var h=document.documentElement;h.setAttribute('data-preset',p);h.setAttribute('data-mode',d);h.setAttribute('data-theme',d);h.dataset.themeChoice=t;})();</script>
<style>
.archive-page { max-width: var(--content-max); margin: 28px auto; padding: 0 24px; }
.archive-page h1 { font-size: 24px; margin-bottom: 8px; font-weight: 700; }
.archive-page .desc { color: var(--text-secondary); font-size: 14px; margin-bottom: 28px; }
.year-group { margin-bottom: 36px; }
.year-title {
font-size: 22px;
font-weight: 700;
margin-bottom: 16px;
color: var(--primary);
}
.archive-list { list-style: none; }
.archive-item {
display: flex;
align-items: baseline;
gap: 16px;
padding: 10px 0;
border-bottom: 1px dashed var(--border);
}
.archive-item .date {
flex-shrink: 0;
width: 60px;
font-family: var(--font-mono);
font-size: 13px;
color: var(--text-tertiary);
}
.archive-item .title { font-size: 14.5px; color: var(--text-main); flex: 1; min-width: 0; }
.archive-item:hover .title { color: var(--primary); }
.archive-item .tags { color: var(--text-tertiary); font-size: 12px; }
@media (max-width: 720px) {
.archive-page { margin: 16px auto; padding: 0 14px; }
.archive-page h1 { font-size: 20px; }
.archive-page .desc { font-size: 13px; margin-bottom: 18px; }
.year-group { margin-bottom: 24px; }
.year-title { font-size: 18px; margin-bottom: 12px; }
.archive-item { gap: 10px; padding: 8px 0; flex-wrap: wrap; }
.archive-item .date { width: 56px; font-size: 12px; }
.archive-item .title { font-size: 13.5px; }
.archive-item .tags { width: 100%; font-size: 11.5px; padding-left: 66px; margin-top: 2px; }
}
@media (max-width: 420px) {
.archive-item .tags { padding-left: 0; }
}
</style>
<link rel="manifest" href="manifest.webmanifest">
<meta name="theme-color" content="#ea6f5a">
<link rel="apple-touch-icon" href="assets/icon.svg">
<meta name="apple-mobile-web-app-capable" content="yes">
</head>
<body>
<div id="site-nav"></div>
<main class="archive-page">
<h1>归档</h1>
<p class="desc" id="archiveDesc">所有文章按时间倒序排列</p>
<div id="archiveList"></div>
</main>
<div id="site-footer"></div>
<div id="site-overlays"></div>
<script type="module" src="assets/dist/archives.min.js?v=20260627010000"></script>
</body>
</html>