Source code for Klayand.github.io, the personal academic homepage of Zikai Zhou.
The site is a lightweight static page for research updates, selected publications, experience, service, and profile links. It is intentionally dependency-free so GitHub Pages can serve it directly.
index.htmlcontains the page content, metadata, publication entries, and lightbox markup.styles.cssdefines the responsive visual system.images/stores the profile image, favicons, web manifest, and paper preview images.robots.txtandsitemap.xmlprovide basic search engine metadata..nojekylltells GitHub Pages to publish the static files as-is.
Open index.html directly in a browser, or serve the folder locally:
python3 -m http.server 8000Then visit http://localhost:8000.
Most updates only require editing index.html:
- Add recent highlights in the
news-stripsection. - Add or revise research areas in the
researchsection. - Add publication entries in the
publicationssection. - Update roles, service, and contact links in their corresponding sections.
Place new paper preview images under images/papers/ and reference them with relative paths.
Push changes to GitHub and let GitHub Pages publish the site:
git add .
git commit -m "Update homepage"
git push origin sourceThe live site is available at https://klayand.github.io/.