Running Locally
// install
bundle install
// run locally
bundle exec jekyll serve
// site available at http://localhost:4000/blog/
// pushing to master makes site live @ BriceShatzer.com/blog/
Locations
blog/_posts/*- Postsblog/_drafts/*- Drafts preview them using:jekyll serve --draftsblog/assets/post-file/*- Static files for posts
Note
When referncing a path to a file/page, use the construct:
{{ "/" | relative_url }}"
This maintains all the pathing if the baseurl defined in _config.yml is updated. This originally wasn't an issue but it appears a change occured with jekyll-github-metadata v2.5.0 which caused something to break.
Random Useful Information
- Languages that are supported by the syntax highlighting when using fenced code blocks. Remember to start with:
```javascript