Add to the website!
Basic rundown of how to modify this website
Step-by-step process for making a post:
- Add .md file into the _posts folder
- Include the following in the header:
--- layout: post title: [YOUR TITLE] ---
- Name file accordingly: YEAR-MONTH-DAY-TITLE.md (no spaces!!)
- Use github markdown. See link here
Local Development
This is to see your website react to your changes in realtime without having to git push. Make sure you have Ruby installed. If not, follow this tutorial (for Windows)
- Install Jekyll and plug-ins in one fell swoop.
gem install github-pages
This mirrors the plug-ins used by GitHub Pages on your local machine including Jekyll, Sass, etc. - Clone down your fork
git clone https://github.com/yourusername/yourusername.github.io.git
- Serve the site and watch for markup/sass changes
jekyll serve
- View your website at http://127.0.0.1:4000/
- Commit any changes and push everything to the master branch of your GitHub user repository. GitHub Pages will then rebuild and serve your website.
Written on March 7, 2020