Static Site Generator
Jekyll is built on Ruby. See Install Ruby.
sudo gem install jekyll
Initialize Jekyll in repo:
cd <path/to/repo>
jekyll new . --force
_config.yml
:
title: Site Title
description: Site Descr
theme: minima
collections:
content:
output: true
permalink: /:content/
To prevent perms errors, configure bundler
to install gems in '$HOME' dir:
bundle config set --local path 'vendor/bundle'
Install default theme:
bundle install
Build site and start dev server:
bundle exec jekyll serve