You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/_docs/05-configuration.md
+10-1
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:
593
593
594
594
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.
595
595
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):
0 commit comments