Installing the Theme
-
Install Jekyll & Bundler:
gem install jekyll bundler -
Add the following lines to your Jekyll site’s
Gemfile:source "https://rubygems.org" # Jekyll gem "jekyll" # Theme gem "minimal-jekyll-theme" # Plugins group :jekyll_plugins do gem 'jekyll-feed' gem 'jekyll-sitemap' gem 'jekyll-seo-tag' gem 'jekyll-archives' end -
Add this line to your Jekyll site’s
_config.ymlfiletheme: minimal-jekyll-theme -
Run Bundler to install the theme gem and dependencies
bundle install -
To update your theme in the future simply run
bundle update.
Theme Setup
-
Create a
/_data/folder in your sites root directory. -
Copy
theme.ymlandauthors.ymlfrom/docs/_data/to your/_data/folder located in your sites root directory. -
Create
/assets/images/folder to manage all your sites images.
Usage
To view your new theme, run bundle exec jekyll serve and open your browser at http://localhost:4000.