Skip to content
This repository was archived by the owner on Jul 11, 2023. It is now read-only.

Commit f9b33c4

Browse files
committedAug 29, 2017
Clarify that jekyll-archives has to be installed (mmistakes#1206)
Clarify that jekyll-archives has to be installed Show the simplest way to do it per mmistakes#811 (comment).
1 parent 779f384 commit f9b33c4

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed
 

‎docs/_docs/05-configuration.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,16 @@ Which would create category and tag links in the breadcrumbs and page meta like:
593593

594594
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.
595595

596-
Change `type` to `jekyll-archives` and apply the following [configurations](https://github.com/jekyll/jekyll-archives/blob/master/docs/configuration.md):
596+
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`:
597+
```
598+
group :jekyll_plugins do
599+
gem "jekyll-archives"
600+
end
601+
```
602+
603+
Then run `bundle install`.
604+
605+
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):
597606

598607
```yaml
599608
category_archive:

0 commit comments

Comments
 (0)
This repository has been archived.