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), great_fermentation_debate (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!
You don’t need to memorize markdown syntax or figure out image tags on your own. AI assistants like Claude or ChatGPT work well with Xanthan because the framework uses named, documented components.
A useful starter prompt:
“I’m working on a class project essay using the Xanthan Jekyll framework. My essay is in
essays/my-project-name/index.md. Here’s the file: [paste your index.md]. I want to add an image on the right side of the text with a caption. The image is atimages/my-photo.jpg. Can you show me the Xanthan include tag for that?”
Other things AI handles well:
You can also paste your whole essay and ask: “Does this markdown look correct? Are there any formatting issues?”
Start small—ask AI to help with one thing at a time—and you’ll build confidence quickly.
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.