forked from senli1073/senli1073.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
143 lines (123 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
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title id="title"></title>
<link rel="icon" type="image/x-icon" href="static/assets/favicon.ico" />
<!-- Bootstrap icons-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet" />
<!-- Google fonts-->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Newsreader:ital,wght@0,600;1,600&display=swap"
rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,300;0,500;0,600;0,700;1,300;1,500;1,600;1,700&display=swap"
rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,400;1,400&display=swap"
rel="stylesheet" />
<!-- Core theme CSS (includes Bootstrap)-->
<link type="text/css" href="static/css/styles.css" rel="stylesheet" />
<link type="text/css" href="static/css/main.css" rel="stylesheet" />
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="header navbar navbar-expand-lg navbar-light fixed-top shadow-sm" id="mainNav">
<div class="container px-5">
<a id="page-top-title" class="navbar-brand fw-bold" href="#page-top"></a>
<!-- <a href="#page-top"><img src="static/assets/img/CUMT_LOGO.svg" style="width: 11rem;"></a> -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive"
aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
MENU
<i class="bi-list"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ms-auto me-4 my-3 my-lg-0">
<li class="nav-item">
<a class="nav-link me-lg-3" href="#page-top">HOME</a>
</li>
<li class="nav-item">
<a class="nav-link me-lg-3" href="#publications">PUBLICATIONS</a>
</li>
<li class="nav-item">
<a class="nav-link me-lg-3" href="#awards">AWARDS</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Top Section -->
<section class="top-section" style="background-image: url('static/assets/img/background.jpeg');">
<div class="top-section-content">
<div class="container px-5">
<div class="row">
<div class="col-lg-8">
<h2 id="top-section-bg-text" class="text-white display-3 lh-1 mb-4 font-alt"></h2>
</div>
<div class="col-lg-4">
<div class="user-photo photo"><img class="shadow"
src="static/assets/img/haoyu.jpg"></div>
</div>
</div>
</div>
</div>
</section>
<!-- Top Section -->
<!-- Home -->
<section class="bg-gradient-primary-to-secondary-light mt5 md5" id="home">
<div class="container px-5">
<header>
<h2 id="home-subtitle"> </h2>
<!-- <span class="bi bi-list"></span> -->
</header>
<div class="main-body" id="home-md"></div>
</div>
</section>
<!-- Home -->
<!-- Publications -->
<section class="bg-gradient-primary-to-secondary-gray mt5 md5" id="publications">
<div class="container px-5">
<header>
<h2 id="publications-subtitle"><i class="bi bi-file-text-fill"></i> PUBLICATIONS</h2>
</header>
<div class="main-body" id="publications-md"></div>
</div>
</section>
<!-- Publications -->
<!-- Awards -->
<section class="bg-gradient-primary-to-secondary-light mt5 md5" id="awards">
<div class="container px-5">
<header>
<h2 id="awards-subtitle"><i class="bi bi-award-fill"></i>AWARDS </h2>
</header>
<div class="main-body" id="awards-md"></div>
</div>
</section>
<!-- Awards -->
<!-- Footer-->
<footer class="bg-bottom text-center py-5">
<div class="container px-5">
<div class="text-white-50 small">
<div id="copyright-text" class="mb-2"></div>
<a id="github-link" href="https://github.com/haoychen3/haoychen3.github.io">Github</a>
<span class="mx-1">·</span>
<a id="license-link" href="https://github.com/haoychen3/haoychen3.github.io/blob/main/LICENSE">License</a>
</div>
</div>
</footer>
<!-- Bootstrap core JS-->
<script type="text/javascript" src="static/js/bootstrap.bundle.min.js"></script>
<script type="text/javascript" src="static/js/marked.min.js"></script>
<script>
MathJax = {
tex: { inlineMath: [['$', '$']] }
};
</script>
<script type="text/javascript" id="MathJax-script" src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js"></script>
<!-- Core JS-->
<script type="text/javascript" src="static/js/scripts.js"></script>
<script type="text/javascript" src="static/js/js-yaml.min.js"></script>
</body>
</html>