-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
131 lines (122 loc) · 5.5 KB
/
index.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Berrysoft.Pages</title>
<base href="/" />
<link rel="alternate" type="application/rss+xml" href="blogdata/feed.xml" />
<link href="https://cdnjs.snrat.com/ajax/libs/bootswatch/5.3.3/darkly/bootstrap.min.css" rel="stylesheet" />
<link href="https://cdnjs.snrat.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" rel="stylesheet" />
<link href="/css/site.css" rel="stylesheet" />
<link href="https://cdnjs.snrat.com/ajax/libs/highlight.js/11.10.0/styles/atom-one-dark.min.css" rel="stylesheet" />
<link data-trunk rel="copy-file" href="favicon.ico" />
<link data-trunk rel="copy-file" href=".nojekyll" />
<link data-trunk rel="copy-file" href="404.html" />
<link data-trunk rel="copy-file" href="README.md" />
<link data-trunk rel="copy-dir" href="blogdata" />
<link data-trunk rel="copy-dir" href="css" />
<link data-trunk rel="copy-dir" href="data" />
<link data-trunk rel="copy-dir" href="js" />
</head>
<body>
<header class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="">Berrysoft</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div id="navbarSupportedContent" class="navbar-collapse collapse">
<div class="navbar-nav mr-auto">
<a class="nav-item nav-link" href="/">主页</a>
<a class="nav-item nav-link" href="/blog">博客</a>
<a class="nav-item nav-link" href="/about">关于</a>
</div>
</div>
</div>
</header>
<app>
<div class="spinner">
<div class="rect1"></div>
<div class="rect2"></div>
<div class="rect3"></div>
<div class="rect4"></div>
<div class="rect5"></div>
</div>
</app>
<footer class="navbar navbar-dark bg-dark">
<div class="container">
<div class="row ms-md-auto">
<div class="col-auto">
<div class="row">
<div class="col-auto py-2">
<span class="fas fa-envelope"></span>
</div>
<div class="col-auto py-2">
<a href="mailto:[email protected]">Email</a>
</div>
</div>
</div>
<div class="col-auto">
<div class="row">
<div class="col-auto py-2">
<span class="fas fa-rss"></span>
</div>
<div class="col-auto py-2">
<a href="/blogdata/feed.xml">RSS</a>
</div>
</div>
</div>
<div class="col-auto">
<div class="row">
<div class="col-auto py-2">
<span class="fas fa-code-branch"></span>
</div>
<div class="col-auto py-2">
<a href="https://github.com/Berrysoft/">Berrysoft</a>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- Start Single Page Apps for GitHub Pages -->
<script>
// Single Page Apps for GitHub Pages
// https://github.com/rafrex/spa-github-pages
// Copyright (c) 2016 Rafael Pedicini, licensed under the MIT License
// ----------------------------------------------------------------------
// This script checks to see if a redirect is present in the query string
// and converts it back into the correct url and adds it to the
// browser's history using window.history.replaceState(...),
// which won't cause the browser to attempt to load the new url.
// When the single page app is loaded further down in this file,
// the correct url will be waiting in the browser's history for
// the single page app to route accordingly.
(function (l) {
if (l.search) {
var q = {};
l.search.slice(1).split('&').forEach(function (v) {
var a = v.split('=');
q[a[0]] = a.slice(1).join('=').replace(/~and~/g, '&');
});
if (q.p !== undefined) {
window.history.replaceState(null, null,
l.pathname.slice(0, -1) + (q.p || '') +
(q.q ? ('?' + q.q) : '') +
l.hash
);
}
}
}(window.location))
</script>
<!-- End Single Page Apps for GitHub Pages -->
<script src="https://cdnjs.snrat.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://cdnjs.snrat.com/ajax/libs/twitter-bootstrap/5.3.3/js/bootstrap.min.js"></script>
<script src="https://cdnjs.snrat.com/ajax/libs/highlight.js/11.10.0/highlight.min.js"></script>
<script src="/js/site.js"></script>
<link data-trunk rel="rust" data-wasm-opt="0" />
</body>
</html>