-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Raydo Matthee <[email protected]>
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
4. **`docs/usage/basic-usage.md`** - Instructions for basic usage. | ||
|
||
```markdown | ||
# Basic Usage | ||
|
||
This section explains how to perform basic operations with Skunkworks Academy. | ||
|
||
## Creating a New Page | ||
|
||
To create a new page, add an HTML file in the `pages/` directory. For example, to create an "About Us" page: | ||
|
||
1. Create a file named `about-us.html` in the `pages/` directory. | ||
2. Add the following content: | ||
|
||
```html | ||
--- | ||
layout: default | ||
title: About Us | ||
--- | ||
|
||
<h1>About Us</h1> | ||
<p>Welcome to Skunkworks Academy!</p> | ||
``` | ||
|
||
3. Save the file and rebuild the site: | ||
|
||
```sh | ||
bundle exec jekyll build | ||
``` | ||
|
||
## Adding a New Course | ||
|
||
To add a new course, create a new HTML file in the `pages/courses/` directory and follow the same steps as creating a new page. |