This repository hosts the website for Profile, a research initiative, built with Jekyll and deployed via GitHub Pages using the official Cayman theme.
Go there to see the live site.
This site is built with:
- Markdown for content (
.mdfiles) - MathJax for LaTeX-style math rendering
- Cayman Jekyll theme (official GitHub Pages theme)
- GitHub Actions for automatic deployment
index.md— Homeabout.md— About the projectpublications.md— Publicationscontact.md— Contact information
MathJax is included for rendering math expressions.
- Inline math:
Write\\( E = mc^2 \\)→ \( E = mc^2 \)
\( E = mc^2 \)
-
Block math:
$$ \\int_0^\\infty e^{-x^2} dx = \\frac{\\sqrt{\\pi}}{2} $$
$$ \int_0^\infty e^{-x^2} dx = \frac{\sqrt{\pi}}{2} $$
\( \int_0^\infty e^{-x^2} dx = \frac{\sqrt{\pi}}{2} \)
To add a new page (e.g., a "Team" page):
-
Create a new Markdown file like
team.mdwith a front matter block:--- title: Team --- ## Our Team - Dr. Alice Smith - Prof. John Doe
-
Link to the new page from
index.mdor other pages:[Home](index.md) | [Team](team.md)
-
Commit and push your changes (on main) — GitHub Pages will rebuild the site automatically.
To change the site’s title, description, or theme, edit _config.yml:
title: Project X
description: Research project website
theme: jekyll-theme-caymanThis site is automatically built and deployed by GitHub Actions.
No local installation of Ruby or Jekyll is required.