Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 1.23 KB

File metadata and controls

30 lines (20 loc) · 1.23 KB

Powered by Jekyll (docs)

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/* - Posts
  • blog/_drafts/* - Drafts preview them using: jekyll serve --drafts
  • blog/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