Skip to content

Commit d88b6f7

Browse files
committed
add basic components
1 parent 905a373 commit d88b6f7

13 files changed

Lines changed: 312 additions & 24 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
_site/
2+
.jekyll-cache/

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
11
# whY-note.github.io
22
https://whY-note.github.io
3+
4+
5+
## TODO
6+
7+
- [ ] 导航栏做成渐变色(仿清华的紫色变蓝色)
8+
- [ ] publications不出现的问题
9+
- [ ] github,scholar的图标
10+
- [ ] 根据academicpages,完善所含有的内容
11+
- [ ] 添加滚动渐渐出现的效果
12+
- [ ] 添加个人logo
13+
- [ ] 添加开头视频

_config.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# _config.yml
2+
3+
author:
4+
name: Haowen Yan
5+
chinese_name: 严浩文
6+
location: Guangdong, China
7+
university: Sun Yat-Sen University
8+
email: yanhw7@mail2.sysu.edu.cn
9+
bio: I love robotics and AI.fgd

_data/profile.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# _config.yml
2+
3+
4+
name: Haowen Yan
5+
chinese_name: 严浩文
6+
bio: I love robotics and AI.
7+
8+
location: Guangdong, China
9+
university: Sun Yat-Sen University
10+
11+
avatar: /assets/images/avatar.jpg
12+
13+
social:
14+
- email: yanhw7@mail2.sysu.edu.cn
15+
16+
- github: https://github.com/whY-note
17+
18+
- Google_Scholar: https://scholar.google.com
19+
20+

_data/projects.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
- title: RoboArena
2+
description: Benchmark for embodied AI
3+
url: https://github.com/robo-arena
4+
5+
- title: Policy Server
6+
description: High performance policy inference system
7+
url: https://github.com/whY-note

_data/publications.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# example
2+
- title: Decomposed Object Manipulation via Dual-Actor Policy
3+
authors: Bin Fan, Jianjian Jiang, Haowen Yan
4+
venue: arXiv 2025
5+
pdf: /papers/paper1.pdf
6+
image: /assets/images/paper1.png
7+
8+
- title: Efficient Policy Learning for Robotics
9+
authors: Haowen Yan, Others
10+
venue: ICRA 2026
11+
pdf: /papers/paper2.pdf
12+
image: /assets/images/paper2.png

_includes/footer.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<footer>
2+
Copyright 2026
3+
</footer>

_includes/header.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!-- 顶部导航 -->
2+
<header class="navbar">
3+
<div class="nav-left">
4+
Haowen Yan
5+
</div>
6+
7+
<nav class="nav-right">
8+
<a href="#">Publications</a>
9+
<a href="#">Projects</a>
10+
<a href="#">Blog</a>
11+
<a href="#">About</a>
12+
</nav>
13+
</header>

_includes/sidebar.html

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{% assign profile = site.data.profile %}
2+
3+
<aside class="sidebar">
4+
<img src="/assets/images/avatar.jpg" class="avatar">
5+
6+
<h2> {{ profile.name }} | {{profile.chinese_name }} </h2>
7+
8+
<p class="bio">
9+
{{ profile.bio }}
10+
</p>
11+
12+
<ul class="info">
13+
<li> {{ profile.location }} </li>
14+
<li> {{ profile.university }} </li>
15+
<!-- <li> {{ profile.email }} </li> -->
16+
<li>
17+
<a href="mailto:{{ profile.social.email }}">
18+
<i class="fa-solid fa-envelope"></i> {{ profile.social.email }}
19+
</a>
20+
</li>
21+
22+
<li>
23+
<a href="{{ profile.socical.github }}">
24+
<i class="fa-brands fa-github"></i>
25+
Github
26+
</a>
27+
</li>
28+
29+
<li>
30+
<a href="{{ profile.socical.Google_Scholar }}">
31+
<i class="fa-solid fa-graduation-cap"></i>
32+
Google Scholar
33+
</a>
34+
</li>
35+
</ul>
36+
37+
</aside>

_layouts/default.html

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,30 @@
22
<html>
33

44
<head>
5+
<meta charset="UTF-8">
56
<title>{{ page.title }}</title>
7+
8+
<link rel="stylesheet" href="/assets/css/style.css">
9+
<link rel="stylesheet"
10+
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
611
</head>
712

813
<body>
914

10-
<header>
11-
<h1>My Website</h1>
12-
</header>
15+
{% include header.html %}
16+
17+
<div class="container">
18+
<!-- left sidebar -->
19+
{% include sidebar.html %}
20+
21+
<!-- content at the right -->
22+
<main class="content">
23+
{{content}}
24+
</main>
25+
</div>
1326

14-
<main>
15-
{{ content }}
16-
</main>
27+
{% include footer.html %}
1728

18-
<footer>
19-
Copyright 2026
20-
</footer>
2129

2230
</body>
2331
</html>

0 commit comments

Comments
 (0)