-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguestbook.html
More file actions
55 lines (50 loc) · 1.96 KB
/
Copy pathguestbook.html
File metadata and controls
55 lines (50 loc) · 1.96 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="留言板 — Giscus" />
<title>留言 · YINZ7032's Blog</title>
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<link rel="stylesheet" href="css/style.css" />
<script
src="https://giscus.app/client.js"
data-repo="AYin-Z/Blog"
data-repo-id="R_kgDOSLNHIQ"
data-category="General"
data-category-id="DIC_kwDOSLNHIc4C7mTD"
data-mapping="pathname"
data-strict="0"
data-reactions-enabled="1"
data-emit-metadata="0"
data-input-position="top"
data-theme="preferred_color_scheme"
data-lang="zh-CN"
crossorigin="anonymous"
async
></script>
</head>
<body data-page="guestbook">
<header class="site-header" id="site-header"></header>
<main>
<nav class="breadcrumb" aria-label="面包屑">
<a href="index.html">首页</a> <span class="breadcrumb__sep">/</span> <span>留言</span>
</nav>
<h1 class="page-title">留言</h1>
<p class="page-desc">
访客可通过 GitHub 账号登录后留言。留言自动同步到仓库
<a href="https://github.com/AYin-Z/Blog/discussions" target="_blank" rel="noopener">Discussions</a>。
</p>
<p id="guestbook-error" class="msg msg--error" hidden></p>
<div id="featured-messages" class="featured-list"></div>
<h2 class="section-title">给我留言</h2>
<div class="giscus"></div>
</main>
<footer class="site-footer site-footer--rich" id="site-footer"></footer>
<script src="js/site-config.js"></script>
<script src="js/layout.js"></script>
<script src="js/guestbook.js"></script>
<meta name="referrer" content="no-referrer-when-downgrade" />
<script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
</body>
</html>