A static site for The Notion Collective, an art collective that is currently inactive. The site serves as a historical archive of past projects.
All site files live in the src/ directory, which GitHub Pages is configured to serve:
src/
├── index.html — Homepage with project list
├── css/
│ ├── style.css — Main stylesheet
│ ├── fonts.css — @font-face declarations
│ └── normalize.css — CSS reset
├── fonts/
│ ├── Inter-*.woff2 — Body font
│ └── LeagueGothic-*.woff2 — Display font (reserved for "The Notion Collective")
├── images/ — Empty; for future use
└── projects/
├── circling.html
├── farmwork-a-retrospective.html
└── ... — One HTML file per project
- To add a project: create a new HTML file in
src/projects/following the existing structure, then add a link insrc/index.html. - To swap an image: place it in
src/images/and reference withimages/filename.jpgfrom root pages or../images/filename.jpgfrom project pages. - To update a link: edit the relevant HTML file directly.
- To preview locally: run
./serve.shand open http://localhost:8000
No build step or dependencies are required.
- Static HTML and CSS only — no JavaScript
- Semantic HTML preferred (
<article>,<section>,<header>,<nav>,<time>, etc.) - Typography-first design
- Archival, not promotional tone
- "League Gothic" is reserved for the name "The Notion Collective" only