A minimalist static website for the fellowship, built with markdown content that renders to HTML.
- Edit content in the
content/folder - Run
npm run buildto regenerate the site - Open
index.htmlin your browser
All content is stored in markdown files in the content/ folder:
The main hero section with title, subtitle, and call-to-action button.
---
title: "AI FOR EPISTEMICS & COORDINATION"
subtitle: "Your mission statement here..."
cta_text: "READ THE THEORY"
cta_link: "#theory"
---The vision section content.
---
title: "OUR VISION"
---
Your vision content here in markdown...The beacon projects grid with project cards.
---
title: "BEACON PROJECTS"
projects:
- title: "PROJECT NAME"
description: "Project description"
link: "#project-link"
icon: "mediation" # Options: mediation, layers, settings
---The fellowship section.
---
title: "FELLOWSHIP"
cta_text: "MEET THE FELLOWS"
cta_link: "fellowship.html"
---
Your fellowship description in markdown...npm run build- Generate the site from markdownnpm run dev- Build and open in browser
├── index.html # Generated homepage (don't edit directly)
├── assets/css/style.css # Styling
├── content/ # Markdown content files (edit these!)
├── build.js # Site generator
└── package.json # Dependencies
To add new sections, edit build.js and create corresponding markdown files in content/.