-
Notifications
You must be signed in to change notification settings - Fork 0
/
note.html
62 lines (62 loc) · 2.51 KB
/
note.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Michael An Personal Website</title>
<link rel="shortcut icon" href="./personal/site/assets/images/favicon.png">
<link rel="stylesheet" href="./css/font-awesome.min.css">
<link rel="stylesheet" href="./css/base.css">
<link rel="stylesheet" href="./css/index.css">
</head>
<body id="classic-website" class="mt-main-index one-column">
<div id="container">
<div id="container-inner">
<header id="header">
<div id="header-inner">
<div id="header-content">
<h1>个人笔记</h1>
</div>
</div>
</header>
<div id="content">
<div id="content-inner">
<div id="alpha">
<div id="alpha-inner">
<div id="page-alpha" style="margin-bottom:2em;">
<!-- 显示成网格模式,增加分类,减少每一个入口页面太多的问题 -->
<p>»<a href="./personal/site/index.html">重要笔记</a></p>
<p>»<a href="./frontend/site/index.html">前端学习</a></p>
<p>»<a href="./backend/site/index.html">后端学习</a></p>
<p>»<a href="./leetcode/site/index.html">算法和面试</a></p>
<p>»<a href="./book/site/index.html">读书笔记</a></p>
<p>»<a href="./react/site/index.html">React 学习</a></p>
<p>»<a href="./python/index.html">Python 学习</a></p>
<p>»<a href="./vue/index.html">Vue 学习</a></p>
</div>
</div>
</div>
</div>
</div>
<footer id="footer">
<div id="footer-inner">
<div id="footer-content">
<p>
<a href="https://michael18811380328.github.io/">https://michael18811380328.github.io/</a>
</p>
</div>
</div>
</footer>
</div>
</div>
<script src="./js/baidu-statistics.min.js"></script>
<script src="./waifu/autoload.js"></script>
<script>
window.onload = function() {
var body = document.getElementsByTagName('body')[0];
var index = Math.floor(Math.random() * 100);
body.setAttribute('style', `background-size: cover; background-repeat: no-repeat; background-image: url(https://michael18811380328.github.io/background/pub_${index}.jpg)`);
}
</script>
</body>
</html>