Homepage Layout Redesign Implementation Plan
Homepage Layout Redesign Implementation Plan
For Claude: REQUIRED SUB-SKILL: Use superpowers:executing-plans to implement this plan task-by-task.
Goal: Replace inline-style div soup in about.md with semantic HTML classes, add Education timeline, Publication card, and Awards badge-row layouts.
Architecture: Two-file change only. _pages/about.md gets rewritten HTML structure with CSS class names. _sass/_custom.scss gets new classes appended at the bottom. The existing color tokens ($accent, $warm-bg, etc.) are already defined in _custom.scss and reused here.
Tech Stack: Jekyll 3.9, SCSS, HTML5, GitHub Pages
Verification command (use after every task)
bundle exec jekyll build 2>&1 | tail -3
Expected: ends with done in X.XXX seconds. — no error lines.
Task 1: Rewrite _pages/about.md
Files:
- Modify:
_pages/about.md
Step 1: Replace the entire file content
Write the following as the complete new content of _pages/about.md:
---
permalink: /
title: "Xiaoxiong Zhang"
excerpt: "About me"
author_profile: true
redirect_from:
- /about/
- /about.html
---
I am an M.S. student in Robotics at the Southern University of Science and Technology (SUSTech), advised by [Prof. Wei Zhang](https://faculty.sustech.edu.cn/?tagid=zhangw3&go=2) in the [CLEAR Lab](https://www.wzhanglab.site/). Before that, I received my B.S. in Mechanical Engineering from Wuhan University of Technology (WHUT) in July 2024.
My research interests lie at the intersection of Machine Learning and Robotics. I focus on developing generalist manipulation policies from in-the-wild manipulation videos.
I welcome inquiries and correspondence. Please feel free to contact me at: 12433017@mail.sustech.edu.cn.
<br>
## Education Background
<div class="edu-timeline">
<div class="edu-entry">
<div class="edu-dot"></div>
<div class="edu-body">
<div class="edu-header">
<strong>Southern University of Science and Technology (SUSTech)</strong>
<span class="edu-date">Sep. 2024 – Now</span>
</div>
<div class="edu-degree">Master in Control Science and Engineering</div>
</div>
</div>
<div class="edu-entry">
<div class="edu-dot"></div>
<div class="edu-body">
<div class="edu-header">
<strong>Wuhan University of Technology (WHUT)</strong>
<span class="edu-date">Sep. 2020 – Jul 2024</span>
</div>
<div class="edu-degree">Bachelor of Engineering in Mechanical Engineering · GPA: <strong>4.28/5.0</strong> · Rank: <strong>2/178</strong></div>
</div>
</div>
</div>
<br>
## Publications
<div class="pub-card">
<div class="pub-media">
<div class="pub-video-wrap">
<iframe src="https://www.youtube.com/embed/fGzu_huiuvE" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<div class="pub-info">
<div class="pub-title">Generative Visual Foresight Meets Task-Agnostic Pose Estimation in Robotic Table-top Manipulation</div>
<div class="pub-authors">Chuye Zhang*, <strong>Xiaoxiong Zhang*</strong>, Wei Pan, Linfang Zheng<sup>†</sup>, Wei Zhang<sup>†</sup></div>
<div class="pub-venue">
<span class="venue-badge">CoRL 2025</span>
<a href="https://clearlab-sustech.github.io/gvf-tape/" class="pub-link">[project page]</a>
</div>
</div>
</div>
<br>
## Honors & Awards
<div class="award-list">
<div class="award-entry">
<div class="award-body">
<strong>Outstanding Graduate</strong>
<span class="award-org">Wuhan University of Technology</span>
</div>
<span class="award-year">2024</span>
</div>
<div class="award-entry">
<div class="award-body">
<strong>University Merit Student Award (Top 1%)</strong>
<span class="award-org">Wuhan University of Technology</span>
</div>
<span class="award-year">2022</span>
</div>
<div class="award-entry">
<div class="award-body">
<strong>National Scholarship (Top 2%)</strong>
<span class="award-org">Wuhan University of Technology</span>
</div>
<span class="award-year">2022</span>
</div>
<div class="award-entry">
<div class="award-body">
<strong>National Scholarship (Top 2%)</strong>
<span class="award-org">Wuhan University of Technology</span>
</div>
<span class="award-year">2021</span>
</div>
</div>
Step 2: Verify build
bundle exec jekyll build 2>&1 | tail -3
Expected: clean build.
Step 3: Commit
git add _pages/about.md
git commit -m "feat: rewrite about.md with semantic layout classes"
Task 2: Append CSS classes to _sass/_custom.scss
Files:
- Modify:
_sass/_custom.scss(append to bottom)
Step 1: Read the current end of the file
Read _sass/_custom.scss to confirm its last line, then append the following block after it:
// ─── Education Timeline ──────────────────────────────────────────
.edu-timeline {
border-left: 2px solid $accent;
margin-left: 6px;
padding-left: 1.4em;
margin-top: 1em;
}
.edu-entry {
position: relative;
margin-bottom: 1.6em;
&:last-child {
margin-bottom: 0;
}
}
.edu-dot {
position: absolute;
left: -1.85em;
top: 0.35em;
width: 9px;
height: 9px;
border-radius: 50%;
background-color: $accent;
border: 2px solid $warm-bg;
box-shadow: 0 0 0 1.5px $accent;
}
.edu-header {
display: flex;
justify-content: space-between;
align-items: baseline;
flex-wrap: wrap;
gap: 0.3em;
}
.edu-date {
font-size: 0.85em;
font-style: italic;
color: $muted-text;
white-space: nowrap;
}
.edu-degree {
margin-top: 0.2em;
font-size: 0.92em;
color: $muted-text;
}
// ─── Publication Card ────────────────────────────────────────────
.pub-card {
display: flex;
gap: 1.4em;
align-items: flex-start;
padding: 1.2em 1.4em;
background: rgba(136, 150, 179, 0.07);
border: 1px solid $border-warm;
border-radius: 6px;
margin-top: 1em;
flex-wrap: wrap;
}
.pub-media {
flex: 0 0 280px;
max-width: 280px;
}
.pub-video-wrap {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
border-radius: 4px;
iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
}
.pub-info {
flex: 1;
min-width: 200px;
display: flex;
flex-direction: column;
gap: 0.5em;
}
.pub-title {
font-family: 'Playfair Display', Georgia, serif;
font-size: 1.02em;
font-weight: 700;
line-height: 1.4;
color: $warm-text;
}
.pub-authors {
font-size: 0.9em;
color: $muted-text;
line-height: 1.5;
}
.pub-venue {
display: flex;
align-items: center;
gap: 0.8em;
flex-wrap: wrap;
}
.venue-badge {
display: inline-block;
padding: 0.18em 0.6em;
background: $accent;
color: #fff;
border-radius: 3px;
font-size: 0.8em;
font-weight: 700;
letter-spacing: 0.03em;
}
.pub-link {
font-size: 0.9em;
color: $accent;
text-decoration: none;
border-bottom: 1px solid transparent;
transition: border-color 0.2s ease;
&:hover {
border-bottom-color: $accent;
text-decoration: none;
}
}
// ─── Honors & Awards ─────────────────────────────────────────────
.award-list {
margin-top: 1em;
}
.award-entry {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1em;
padding: 0.65em 0;
border-bottom: 1px solid $border-warm;
&:last-child {
border-bottom: none;
}
}
.award-body {
display: flex;
flex-direction: column;
gap: 0.1em;
}
.award-org {
font-size: 0.85em;
color: $muted-text;
}
.award-year {
flex-shrink: 0;
display: inline-block;
padding: 0.18em 0.55em;
background: $accent;
color: #fff;
border-radius: 3px;
font-size: 0.75em;
font-weight: 700;
letter-spacing: 0.04em;
}
Step 2: Verify build
bundle exec jekyll build 2>&1 | tail -3
Expected: clean build.
Step 3: Commit
git add _sass/_custom.scss
git commit -m "feat: add edu-timeline, pub-card, award-list CSS classes"
Task 3: Final push
Step 1: Confirm git log
git log --oneline -4
Expected: two new commits at top.
Step 2: Push
git push origin master
