Add back instructions for replacing the Jekyll gem with github-pages when testing locally.

This commit is contained in:
Michael Rose 2018-01-02 16:28:43 -05:00
parent c5ebfac0e6
commit b51661e098

View file

@ -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.
---