Welcome! This page guides you through setting up your own project folder in the repository you have copied as a clone of the Silk Road repository made by Amaranth. 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.
Amaranth 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/ folder and select Pastegreat-fermentation-debate, pigeon-conspiracy, hot-dog-sandwichGreat Fermentation Debate (spaces), GreatFermentationDebate (not uncapitalized, no hyphens)What your folder structure will look like:
essays/
├── your_thematic_essay_title/
│ ├── 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.mdobjects/ folder—you’ll see sample foldersimagesindex.md file insideNow you have a starting point! You can edit these index.md files to add your own title, introduction, and content.
At the very top of index.md, you’ll see something like:
---
author: student name
title: "Your Title"
layout: scrollstory
header-image: images/han-coin-two-sides-mahogany.png
thumbnail: images/han-coin-mahogany.png
summary: The image is of the Han coin, not the monastery relic.
geo: [31.777, 35.224]
placename: Jerusalem
tags:
- object
---
author to to your name.title to match your actual project.layout.header-image and thumbnail.summary write a short sentence that will appear in the little card for the file.geo.placename.tags by replacing the word object and adding to the list by typing a hyphen to the left of each new keyword.Below the --- lines, replace the sample content with your own writing, analysis, images, etc. Keep the same structure and formatting.
images/ folderindex.md file by copy-pasting code such as in the following example:
{% include images/figure.html
class="right"
width="40%"
caption="What a nice view"
alt-text="Color photograph showing some hiking trails in a canyon of the Sandia foothills."
image-path="/assets/images/backgrounds/hike-1.jpg"
%}
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.