Documentation-ception

Running Jekyll Locally

First of all, check out the GitHub Pages guide
This is written with you having read that in mind, but just spelling out things for the slow people (me).
Having installed the prerequisites and cloned the repo, go to the local directory for the repo. Open the terminal there.
To run Jekyll, you need a Gemfile. Create it, such as through `touch Gemfile`, then add `gem 'jekyll'` to add that as a dependency.
The rest of the instructions are clear as is.

Buuuuut for ease of copy pasting >:3
bundle exec jekyll serve
http://localhost:4000
To add new gems, remember to use 'gem install'

Check out the Midnight theme's repo. There's some useful instructions there for locally using themes.

Linking Pages

Styling Pages

I have a few desires for my GitHub pages:

Given that, I think I have a workable workflow. Let's say I have this new repository Wz93Enjoyers. My styling files are hosted on the repo for OwO, and this repo can have a link to the new repo.
  1. Write the README.md in the docs folder of the repo
  2. Go into the repo settings and enable Pages deployment
  3. Create a `_config.yml` so I can specify the title, description, and basic theme
  4. Create `assets/css/style.scss`
  5. Paste the two lines of `---` then the `@import "https://backup158.github.io/DarktideWeaponCustomizationOwO/assets/css/style.css";`
  6. Touch the Gemfile in the docs folder
  7. Copy the Gemfile contents from OwO (this wouldn't change often so I made sacrifices)
  8. Run `bundle install`
  9. I think it'd be fine now? But I still built the local version with `bundle exec jekyll serve`
  10. I think the build on commit is part of this repo
  11. Oh speaking of this repo, edit `_data/navigation.yml` to add a link here