From b51661e098486e12801e2663745767e9afbdf44e Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Tue, 2 Jan 2018 16:28:43 -0500 Subject: [PATCH] Add back instructions for replacing the Jekyll gem with `github-pages` when testing locally. --- docs/_docs/01-quick-start-guide.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/_docs/01-quick-start-guide.md b/docs/_docs/01-quick-start-guide.md index 4dcc20c3..2d159254 100644 --- a/docs/_docs/01-quick-start-guide.md +++ b/docs/_docs/01-quick-start-guide.md @@ -2,7 +2,7 @@ title: "Quick-Start Guide" permalink: /docs/quick-start-guide/ excerpt: "How to quickly install and setup Minimal Mistakes for use with GitHub Pages." -last_modified_at: 2018-01-02T16:15:15-05:00 +last_modified_at: 2018-01-02T16:28:04-05:00 redirect_from: - /theme-setup/ toc: true @@ -43,6 +43,14 @@ bundle install GitHub Pages has added [full support](https://github.com/blog/2464-use-any-theme-with-github-pages) for any GitHub-hosted theme. +Replace `gem "jekyll"` with: + +```ruby +gem "github-pages", group: :jekyll_plugins +``` + +Run `bundle update` and verify that all gems install properly. + Add `remote_theme: "mmistakes/minimal-mistakes"` to your `_config.yml` file. Remove any other `theme:` or `remote_theme:` entry. ---