-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started with GitHub
mrbell-dev edited this page Feb 3, 2026
·
1 revision
GitHub is where our website's files are stored. Think of it like a shared folder that keeps track of every change ever made.
- Go to github.com
- Click Sign Up in the top right
- Enter your email address
- Create a password
- Choose a username (your callsign works great!)
- Complete the verification
- Important: Let the webmaster know your GitHub username so they can give you access to edit the website
A "repository" (or "repo") is like a project folder. Our website repo is at: https://github.com/mrbell-dev/RC-ARC
When you visit the repository page, you'll see:
| Section | What It Does |
|---|---|
| Code tab | Browse all the files |
| content/ folder | Where all the website pages and posts live |
| config/ folder | Site settings (usually don't need to edit) |
| assets/ folder | Images and other media |
RC-ARC/
├── content/ # Website content lives here
│ ├── _index.en.md # Home page
│ ├── about/ # About page folder
│ ├── activities/ # Activities page folder
│ ├── links/ # Links page folder
│ └── post/ # All posts/articles
│ ├── meetings/
│ ├── repeaters/
│ ├── field-day/
│ └── (other posts...)
├── config/ # Site settings
├── assets/ # Images and resources
│ └── img/
│ └── commons/ # Shared images
└── static/ # Static files
- Navigate to the repository
- Click on folders to open them (like browsing files on your computer)
- Click on a
.mdfile to view its contents - Click the pencil icon to edit (more on this in Editing Content)
All our content files end in .md which stands for Markdown. Markdown is a simple way to format text:
| What You Type | What You Get |
|---|---|
**bold text** |
bold text |
*italic text* |
italic text |
# Heading |
Big heading |
## Smaller Heading |
Smaller heading |
[Link Text](https://url.com) |
Clickable link |
- Item |
Bullet point |
You'll learn more about Markdown as you edit pages!
Now that you know the basics of GitHub, continue to:
- Editing Content - Make your first edit
- Creating New Posts - Add new content