GitHub Pages repo for website
Jekyll Installation on Mac 10.14+
sudo gem install bundler
sudo gem install -n /usr/local/bin/ jekyll
Source: https://jekyllrb.com/docs/installation/macos/
Upgrading from 2.x to 3.x https://jekyllrb.com/docs/upgrading/2-to-3/
Further updates
Install jekyll pagination plugin
gem install jekyll-paginate
Update _config.yml
:
plugins:
- jekyll-paginate
paginate: 5
Liquid changes
Replace
{{site.data.hash.["css/theme.min.css"]}}
with
{{site.data.hash["css/theme.min.css"]}}
This will no longer work:
if !page.id
Image Tag Plugin
Jekyll Image Tag requires Jekyll >=1.0, Minimagick >=3.6, and Imagemagick.
brew install imagemagick
Source: https://www.sethvargo.com/install-imagemagick-on-osx-lion/
gem install mini_magick
!IMPORTANT
Also _config.yml
:
# JEKYLL CONFIG
baseurl: ""
Build to local _dist/
dir
grunt build
Build to GitHub
grunt dist