Personal site and project aggregator. Built 2026.
Pure HTML + CSS. No build step. No framework. Hosted on GitHub Pages with custom domain via Cloudflare DNS.
- Open this folder in VS Code:
File → Open Folder...→ selectaggregator/ - Install the recommended extensions when prompted (Live Server is the important one).
- Right-click
index.html→Open with Live Server. Browser opens athttp://localhost:5500/, auto-refreshes on save.
If you don't want extensions:
python3 -m http.server 8000
# Then visit http://localhost:8000aggregator/
├── index.html # Home page (Work, Music, Study, Connect)
├── about.html # About me page (bio, photo slots, honors)
├── styles.css # All shared styling, CSS variables at top
├── CNAME # GitHub Pages custom domain
├── .vscode/ # Editor defaults
├── .gitignore
└── README.md
- Colors live as CSS variables at the top of
styles.cssunder:root. Change--pink,--cyan,--violet,--gold,--lime,--coralto recolor the whole site. - Each section on the home page has its own accent color via
--accent. To recolor a section, edit#work { --accent: var(--cyan); }etc. - Photo placeholders on the About page are styled blocks with the filename and dimensions baked in. Replace each
<div class="photo-placeholder">...</div>with<img src="assets/your-photo.jpg" alt="..." loading="lazy">when you're ready.
- Replace my photos with your images
- Add a Writing section
- Build your own site!
Site content © Stavion Colquitt. Code structure free to fork and adapt — credit appreciated.