-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (97 loc) · 3.54 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
<!DOCTYPE html>
<html lang="zh_CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>云间客栈 - 云间客栈</title>
<meta name="description" content="京ICP备19051508号-1 All right reserved">
<meta name="author" content="于易衍">
<link href="https://blog.arcfree.cn/an-old-hope.min.css" rel="stylesheet">
<link href="https://blog.arcfree.cn/style.css" rel="stylesheet">
<link rel="apple-touch-icon" href="https://blog.arcfree.cn/apple-touch-icon.png">
<link rel="icon" href="https://blog.arcfree.cn/favicon.ico">
<meta name="generator" content="Hugo 0.68.3" />
<link rel="alternate" type="application/atom+xml" href="https://blog.arcfree.cn/index.xml" title="云间客栈">
<script>
function setTheme() {
const time = new Date();
const prev = localStorage.getItem('date');
const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
const now = time.getTime();
let sunrise;
let sunset;
function setBodyClass() {
if (now > sunrise && now < sunset) return;
document.body.classList.add('dark');
}
if (date !== prev) {
fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
.then(res => res.json())
.then(data => {
sunrise = data.sunrise.split(':').map(Number);
sunset = data.sunset.split(':').map(Number);
})
.catch(() => {
sunrise = [7, 0];
sunset = [19, 0];
})
.finally(() => {
sunrise = time.setHours(sunrise[0], sunrise[1], 0);
sunset = time.setHours(sunset[0], sunset[1], 0);
setBodyClass();
localStorage.setItem('sunrise', sunrise);
localStorage.setItem('sunset', sunset);
});
localStorage.setItem('date', date);
} else {
sunrise = Number(localStorage.getItem('sunrise'));
sunset = Number(localStorage.getItem('sunset'));
setBodyClass();
}
}
</script>
</head>
<body class="list home">
<script>
setTheme();
</script>
<header class="header">
<nav class="nav">
<h1 class="logo"><a href="https://blog.arcfree.cn/">云间客栈</a></h1>
<ul class="menu">
<li>
<a href="https://blog.arcfree.cn/post/">新书</a>
</li>
<li>
<a href="https://blog.arcfree.cn/about/">关于</a>
</li>
<li><a href="https://github.com/arcfree" target="_blank">GitHub</a></li>
</ul>
</nav>
</header>
<main class="main">
<header class="page-header"><h1>云间客栈</h1></header>
<article class="first-entry">
<header class="entry-header">
<h2>致敬英雄共悼逝者!</h2>
</header>
<section class="entry-content">
<p>默哀… ...</p>
</section>
<footer class="entry-footer">
<time>April 4, 2020</time>
</footer>
<a class="entry-link" href="https://blog.arcfree.cn/start/"></a>
</article></main>
<footer class="footer">
<span>© 2020 <a href="https://blog.arcfree.cn/">云间客栈</a></span>
<span>·</span>
<span>京ICP备19051508号-1 All right reserved</span>
</footer>
<script src="https://blog.arcfree.cn/highlight.min.js"></script>
<script>
hljs.initHighlightingOnLoad();
</script>
</body>
</html>