-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmisc.html
More file actions
125 lines (111 loc) · 4.11 KB
/
misc.html
File metadata and controls
125 lines (111 loc) · 4.11 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Miscellaneous</title>
<link rel="stylesheet" href="styles.css">
<style>
/* Minimal styling for quotes */
main {
max-width: 980px;
}
h2 {
font-size: 16px;
margin: 20px 0 12px 0;
}
.quote-group {
margin: 24px 0;
padding: 16px 0;
border-bottom: 1px solid var(--hair);
}
.quote-group:last-child {
border-bottom: none;
}
.quote-text {
font-style: italic;
margin-bottom: 8px;
line-height: 1.6;
color: var(--text);
}
.quote-author {
text-align: right;
font-size: 13px;
color: var(--muted);
font-style: normal;
}
footer {
margin-top: 40px;
padding-top: 16px;
border-top: 1px solid var(--hair);
}
footer nav {
border: none;
padding: 0;
margin: 0;
}
footer nav a {
opacity: 0.85;
margin-right: 0;
}
</style>
</head>
<body>
<nav>
<a href="index.html">Home</a> ·
<span class="cv-dropdown"><a href="#">CV</a><span class="cv-dropdown-menu"><a href="cv/main.pdf">English</a><a href="cv_ja/main.pdf">日本語</a></span></span> ·
<a href="https://www.linkedin.com/in/lxaw/">LinkedIn</a> ·
<a href="https://github.com/lxaw">GitHub</a> ·
<a href="books_read.html">Books</a> ·
<a href="papers_read.html">Papers</a> ·
<a href="posts.html">Posts</a> ·
<a href="personal_interests.html">Personal</a>
</nav>
<main>
<h2>You have discovered the secret page!</h2>
<p>You weren't supposed to be here! Here's where I store some things.</p>
<!-- 孫子 Quote -->
<article class="quote-group">
<p class="quote-text" lang="zh">故舉秋毫,不為多力;見日月,不為明目;聞雷霆,不為聰耳。</p>
<p class="quote-author">- 孫子</p>
</article>
<!-- 松尾芭蕉 Quote -->
<article class="quote-group">
<p class="quote-text" lang="ja">夏草や 兵どもが 夢の跡。</p>
<p class="quote-author">- 松尾芭蕉</p>
</article>
<!-- Jacobi Quote -->
<article class="quote-group">
<p class="quote-text">Man muss immer umkehren.</p>
<p class="quote-author">- Carl Gustav Jacob Jacobi</p>
</article>
<!-- 徳川家康 Quotes -->
<article class="quote-group">
<p class="quote-text" lang="ja">
人の一生は重荷を負うて遠き道を行くがごとし。急ぐべからず。<br>
不自由を常と思えば不足なし。こころに望みおこらば困窮したる時を思い出すべし。<br>
堪忍は無事長久の基、いかりは敵と思え。<br>
勝つ事ばかり知りて、負くること知らざれば害その身にいたる。<br>
おのれを責めて人をせむるな。<br>
及ばざるは過ぎたるよりまされり。<br>
滅びる原因は自らの内にある。
</p>
<p class="quote-author">- Various quotes from 徳川家康</p>
</article>
<!-- Dale Carnegie Quotes -->
<article class="quote-group">
<p class="quote-text">First ask yourself: What is the worst that can happen? Then prepare to accept it. Then proceed to improve on the worst.</p>
<p class="quote-text">Most of the important things in the world have been accomplished by people who have kept on trying when there seemed to be no hope at all.</p>
<p class="quote-text">The successful man will profit from his mistakes and try again in a different way.</p>
<p class="quote-text">Develop success from failures. Discouragement and failure are two of the surest stepping stones to success.</p>
<p class="quote-text">Inaction breeds doubt and fear. Action breeds confidence and courage. If you want to conquer fear, do not sit home and think about it. Go out and get busy.</p>
<p class="quote-author">- Various quotes from Dale Carnegie</p>
</article>
</main>
<footer>
<nav>
<a href="index.html">Back to home</a>
</nav>
</footer>
</body>
</html>