Skip to content

Commit 2e746b2

Browse files
committed
Convert site to multi-page layout
1 parent 6335709 commit 2e746b2

8 files changed

Lines changed: 720 additions & 248 deletions

File tree

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ This repository hosts the static GitHub Pages website for EngineeringAI Lab. The
44
site does not require a build step; GitHub Pages can publish it directly from the
55
repository root.
66

7+
## Site Structure
8+
9+
- `index.html`: About page with Who We Are, We Work On, Highlights, News, and Latest Posts
10+
- `team.html`: leaders, current members, and alumni
11+
- `projects.html`: research directions and representative systems
12+
- `publications.html`: selected team papers and manuscripts
13+
- `advisors.html`: collaborating advisors and partners
14+
- `news.html`: lab updates
15+
- `styles.css`: shared styling for all pages
16+
717
## Recommended Repository Name
818

919
For an organization homepage, name the repository:

advisors.html

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<meta name="description" content="EngineeringAI Lab collaborating advisors and partners.">
7+
<title>EngineeringAI Lab | Advisors</title>
8+
<link rel="stylesheet" href="styles.css">
9+
</head>
10+
<body>
11+
<header class="site-header">
12+
<a class="brand" href="index.html" aria-label="EngineeringAI Lab home">
13+
<img src="Engineering-AI-Logo.png" alt="EngineeringAI Lab logo">
14+
<span>EngineeringAI Lab</span>
15+
</a>
16+
<nav class="nav" aria-label="Primary navigation">
17+
<a href="index.html">About</a>
18+
<a href="team.html">Team</a>
19+
<a href="projects.html">Projects</a>
20+
<a href="publications.html">Publications</a>
21+
<a class="is-active" href="advisors.html">Advisors</a>
22+
<a href="news.html">News</a>
23+
</nav>
24+
</header>
25+
26+
<main>
27+
<section class="page-hero">
28+
<p class="eyebrow">Advisors</p>
29+
<h1>Collaborating advisors and partners</h1>
30+
<p>
31+
We work closely with experts from academia and industry who support our
32+
research direction, paper development, evaluation design, and technology
33+
transfer.
34+
</p>
35+
</section>
36+
37+
<section class="section section-band">
38+
<div class="section-inner">
39+
<div class="advisor-list">
40+
<article>
41+
<h3>Daoyi Dong</h3>
42+
<p>Professor at the University of Technology Sydney; advisor on control and neural systems.</p>
43+
</article>
44+
<article>
45+
<h3>Hongdong Li</h3>
46+
<p>Professor at the Australian National University; advisor on 3D vision and computer vision.</p>
47+
</article>
48+
<article>
49+
<h3>Dong Gong</h3>
50+
<p>Senior Lecturer at UNSW; advisor on continual learning and representation learning.</p>
51+
</article>
52+
<article>
53+
<h3>Zhi Wang</h3>
54+
<p>Associate Professor at Nanjing University; advisor on reinforcement learning and LLM reasoning.</p>
55+
</article>
56+
<article>
57+
<h3>Yatao Bian</h3>
58+
<p>Associate Professor at Nanyang Technological University; advisor on machine learning theory.</p>
59+
</article>
60+
<article>
61+
<h3>Junyan Wang</h3>
62+
<p>Postdoctoral researcher at AIML, University of Adelaide; collaborator on image and video generation.</p>
63+
</article>
64+
<article>
65+
<h3>Yifu Wang</h3>
66+
<p>Product lead at Shanghai VertexLab; collaborator on productization and content production.</p>
67+
</article>
68+
<article>
69+
<h3>Ming Lin</h3>
70+
<p>Senior Scientist at Oracle; collaborator providing cross-domain technical insight.</p>
71+
</article>
72+
</div>
73+
</div>
74+
</section>
75+
</main>
76+
77+
<footer class="site-footer">
78+
<div>
79+
<strong>EngineeringAI Lab</strong>
80+
<span>Open 3D World Model Research and Engineering</span>
81+
</div>
82+
<a href="https://github.com/EngineeringAI-LAB">github.com/EngineeringAI-LAB</a>
83+
</footer>
84+
</body>
85+
</html>

0 commit comments

Comments
 (0)