-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
203 lines (177 loc) · 7.86 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
---
layout: null
---
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<meta content="width=device-width, initial-scale=1" name="viewport">
<title>{{ site.name }}</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', '{{ site.google_analytics }}');
</script>
<link href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@700&family=Noto+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
<link href="{{ '/css/fontawesome.all.min.css' | relative_url }}" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css" rel="stylesheet">
<link href="{{ '/css/bulma.min.css' | relative_url }}" rel="stylesheet">
<link href="{{ '/css/index.css' | relative_url }}" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script defer src="{{ '/js/fontawesome.all.min.js' | relative_url }}"></script>
<script src="{{ '/js/index.js' | relative_url }}"></script>
</head>
<body>
<section class="hero">
<div class="hero-body container is-max-desktop">
<div class="columns is-vcentered">
<div class="column is-4">
<div class="portrait">
<img src="{{ '/images/portrait.jpg' | relative_url }}" />
</div>
</div>
<div class="column">
<h1 class="title">
<b>Hello, I'm {{ site.name }}</b>
</h1>
<div class="content has-text-justified">
{{ site.description | markdownify }}
<div class="buttons">
<a class="external-link button is-light" href="cv.html">
<span class="icon"><i class="fas fa-file"></i></span>
<span>CV</span>
</a>
<a class="external-link button is-light"
href="https://scholar.google.com/citations?user={{ site.google_scholar }}">
<span class="icon"><i class="ai ai-google-scholar"></i></span>
<span>Scholar</span>
</a>
<a class="external-link button is-light" href="https://github.com/{{ site.github_username }}">
<span class="icon"><i class="fab fa-github"></i></span>
<span>Github</span>
</a>
<a class="external-link button is-light" href="mailto:{{ site.email }}">
<span class="icon"><i class="fas fa-envelope"></i></span>
<span>Email</span>
</a>
<a class="external-link button is-light" href="https://www.linkedin.com/in/{{ site.linkedin }}">
<span class="icon"><i class="fab fa-linkedin"></i></span>
<span>Linkedin</span>
</a>
<!-- <a class="external-link button is-light" href="https://twitter.com/{{ site.twitter_username }}">
<span class="icon"><i class="fab fa-twitter"></i></span>
<span>Twitter</span>
</a> -->
</div>
</div>
</div>
</div>
</div>
</section>
<!-- News. -->
<div class="hr">
<div class="container">
<hr>
</div>
</div>
<section class="section">
<div class="container is-max-desktop">
<h2 class="title is-3">News</h2>
<div class="content">
<ul>
{% for news in site.data.news %}
<li>
<b>{{ news.date }}</b>: {{ news.description | markdownify | remove: '<p>' | remove: '</p>' }}
</li>
{% endfor %}
</ul>
</div>
<h2 class="title is-3">Publications</h2>
{% for publication in site.data.publications %}
<div class="publication-block columns">
<div class="column is-2">
<div class="publication-image {% if publication.image_mouseover %}publication-mousecell{% endif %}">
{% if publication.image_mouseover contains "mp4" %}
<video autoplay preload playsinline class="" height="100%" loop muted width="100%">
<source src="./images/{{ publication.image_mouseover }}" type="video/mp4">
Your browser does not support the video tag.
</video>
{% endif %}
<img alt="{{ publication.title }}" src="./images/{{ publication.image }}" />
</div>
</div>
<div class="column">
<div class="content">
<h3 class="publication-title"><a href="{{ publication.project_page }}">{{ publication.title }}</a></h3>
<div class="publication-authors">
{% for author_id in publication.authors %}
{% assign author = site.data.authors[author_id] %}
<span class="author-block {% if author.is_me %}author-me{% endif %}">
{% if author.is_me %}
{{ author.first_name }} {{author.middle_name}} {{ author.last_name }}{% if forloop.last == false %},{%
endif %}
{% else %}
<a href="{{ author.website }}">{{ author.first_name }} {{ author.middle_name }} {{ author.last_name
}}</a>{% if forloop.last == false %},{% endif %}
{% endif %}
</span>
{% endfor %}
</div>
<div class="publication-venue">
<span>{{ publication.venue }}</span>
{% for award in publication.awards %}
<span class="publication-venue-emph">{{ award }}<span>
{% endfor %}
</div>
<p class="publication-description">{{ publication.description }}</p>
<!-- Publication Links. -->
<div class="publication-links buttons field has-addons">
<a class="external-link button is-small is-ghost" href="{{ publication.project_page }}">
<span class="icon"><i class="fas fa-globe-asia"></i></span>
<span>Project Page</span>
</a>
<a class="external-link button is-small is-ghost" href="https://arxiv.org/pdf/{{ publication.arxiv }}.pdf">
<span class="icon"><i class="fas fa-file-pdf"></i></span>
<span>PDF</span>
</a>
<a class="external-link button is-small is-ghost" href="https://arxiv.org/abs/{{ publication.arxiv }}">
<span class="icon"><i class="ai ai-arxiv"></i></span>
<span>arXiv</span>
</a>
{% if publication.github %}
<a class="external-link button is-small is-ghost" href="https://github.com/{{ publication.github }}">
<span class="icon"><i class="fa fab fa-github"></i></span>
<span>Code</span>
</a>
{% endif %}
</div>
<!--/ Publication Links. -->
</div>
</div>
</div>
{% endfor %}
</div>
</section>
<!-- <footer class="footer">
<div class="container">
<div class="content footer-links has-text-centered">
<a href="mailto:{{ site.email }}">
<i class="fas fa-envelope"></i>
</a>
<a class="external-link" href="https://github.com/{{ site.github_username }}">
<i class="fab fa-github"></i>
</a>
<a class="external-link" href="https://scholar.google.com/citations?user={{ site.google_scholar }}">
<i class="ai ai-google-scholar"></i>
</a>
</div>
</div>
</footer> -->
<div align='center'><a href="http://www.clustrmaps.com/map/Haozhang990127.github.io" title="Visit tracker for Haozhang990127.github.io"><img src="//www.clustrmaps.com/map_v2.png?d=ekguiHvwMPkMTWQJCiz7FFi_VPvBrHJbgLFgujDHQrQ" width="300" /></a></div>
</body>
</html>