Welcome! This page guides you through setting up your own project folder in this class project template. Once you’ve created your folder and added your first page, you can delete this file—it’s just here to help you get started.
Your instructor has already set up this template with:
index.md)The easiest way to edit your site is using GitHub’s built-in code editor. No need to download anything!
. (period) key on your keyboard
Your project needs its own folder. Here’s how:
essays/ folderessays/ and select “New Folder”great_fermentation_debate, pigeon_conspiracy, hot_dog_sandwichGreat Fermentation Debate (spaces), GreatFermentationDebate (no underscores)What your folder structure will look like:
essays/
├── your_project_name/
│ ├── images/ (create this next)
│ └── index.md (create this next)
Inside your new project folder, you need a folder for images:
your_project_name/)imagesNow you need to create your first essay page. You can copy from one of the samples:
essays/ folder—you’ll see sample foldersindex.md file insideindex.mdNow you have a starting point! You can edit this file to add your own title, introduction, and content.
At the very top of index.md, you’ll see something like:
---
layout: base
title: Your Project Title
---
Change the title to match your actual project. That’s it!
Below the --- lines, replace the sample content with your own writing, analysis, images, etc. Keep the same structure and formatting.
images/ folderindex.md file with:

Image naming tips:
band-photo.jpg not band photo.jpg)stage-setup.jpg instead of photo1.jpg)When you look at a sample project, you’ll see different “layout” options at the top:
layout: base — Simple, clean page with navigation and footerlayout: scrollstory — Fancy scrolling effects with background images (more advanced!)layout: map — If your project involves a map or spatial elementsStart with layout: base unless your instructor specifies otherwise.
. key)You don’t need to know HTML! Just use simple markdown formatting:
# This is a heading (H1)
## This is a subheading (H2)
**This text is bold**
*This text is italic*
[This is a link](https://example.com)
- Bullet point 1
- Bullet point 2
- Bullet point 3
Tip: Look at the sample pages in the essays/ folder to see examples of markdown you can copy!
If something breaks or doesn’t work:
You can ask AI assistants like Claude or ChatGPT:
For more advanced features:
/docs/ folder in your repositoryOnce you understand how to edit your site and you’re happy with your project:
instructions.md)
Questions? Ask your instructor or check the Xanthan documentation.