Grey Energy Jekyll Theme¶ ↑
A CSS-animated grey theme for a tech blog
Setup¶ ↑
Have an existing Jekyll project or create a new one with:
jekyll new my-blog
Make sure you have file my-blog/archive.md
with the contents:
--- layout: archive ---
Add desired settings from _config.yml.
Install theme¶ ↑
Replace mentions of theme “minima” in Gemfile
with:
gem "grey-energy-theme"
Replace mentions of theme “minima” in _config.yml
with:
theme: grey-energy-theme
Building Jekyll project and testing¶ ↑
Setup dependencies:
cd my-blog bundle install
To build the project run:
bundle exec jekyll build
To test the project run and see localhost:4000
:
bundle exec jekyll serve