Skip to content

Commit

Permalink
Clarify that jekyll-archives has to be installed (#1206)
Browse files Browse the repository at this point in the history
Clarify that jekyll-archives has to be installed

Show the simplest way to do it per #811 (comment).
  • Loading branch information
ohadschn authored and mmistakes committed Aug 29, 2017

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 0d87190 commit 78d0b94
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion docs/_docs/05-configuration.md
Original file line number Diff line number Diff line change
@@ -593,7 +593,16 @@ Which would create category and tag links in the breadcrumbs and page meta like:

If you have the luxury of using Jekyll Plugins then [**jekyll-archives**][jekyll-archives] will make your life much easier as category and tag pages are created for you.

Change `type` to `jekyll-archives` and apply the following [configurations](https://github.com/jekyll/jekyll-archives/blob/master/docs/configuration.md):
First, you'll need to make sure that the `jekyll-archives` plugin is installed. Either run `gem install jekyll-archives` or add the following to your `Gemfile`:
```
group :jekyll_plugins do
gem "jekyll-archives"
end
```

Then run `bundle install`.

Now that the plugin is installed, change `type` to `jekyll-archives` and apply the following [configurations](https://github.com/jekyll/jekyll-archives/blob/master/docs/configuration.md):

```yaml
category_archive:

0 comments on commit 78d0b94

Please sign in to comment.