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.
Rather than start from scratch, you’ll copy a complete starter template with example content.
Name your repository History-1105
Click the green “Create Repository” button.
Now tell GitHub to turn your files into a live website.
Your site is now building! This takes about 1-2 minutes.
To see your live site:
http://github.com/YOUR-USERNAME/History-1105https://YOUR-USERNAME.github.io/History-1105You now have a website on the open web, built from plain text files under your control. Every change you make is versioned—you can always undo mistakes—and the whole thing runs on infrastructure that’s free, open, and not going anywhere.
This is the same workflow professional developers use daily. The tools are just text files and version control—nothing proprietary, nothing you can’t take with you.
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). 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.