|
2 | 2 | title: "Configuration"
|
3 | 3 | permalink: /docs/configuration/
|
4 | 4 | excerpt: "Settings for configuring and customizing the theme."
|
5 |
| -last_modified_at: 2018-08-15T09:50:11-04:00 |
| 5 | +last_modified_at: 2018-10-04T20:15:46-04:00 |
6 | 6 | toc: true
|
7 | 7 | ---
|
8 | 8 |
|
@@ -494,6 +494,7 @@ For faster and more relevant search ([see demo](https://mmistakes.github.io/mini
|
494 | 494 | gem "jekyll-seo-tag"
|
495 | 495 | gem "jekyll-sitemap"
|
496 | 496 | gem "jekyll-paginate"
|
| 497 | + gem "jekyll-include-cache" |
497 | 498 | gem "jekyll-algolia"
|
498 | 499 | end
|
499 | 500 | ```
|
@@ -893,22 +894,27 @@ timezone: America/New_York
|
893 | 894 |
|
894 | 895 | When hosting with GitHub Pages a small [set of gems](https://pages.github.com/versions/) have been whitelisted for use. The theme uses a few of them which can be found under `gems`. Additional settings and configurations are documented in the links below.
|
895 | 896 |
|
896 |
| -| Plugin | Description | |
897 |
| -| ---------------------------------- | ----------------------------------------------------------------------------------------- | |
898 |
| -| [jekyll-paginate][jekyll-paginate] | Pagination Generator for Jekyll. | |
899 |
| -| [jekyll-sitemap][jekyll-sitemap] | Jekyll plugin to silently generate a sitemaps.org compliant sitemap for your Jekyll site. | |
900 |
| -| [jekyll-gist][jekyll-gist] | Liquid tag for displaying GitHub Gists in Jekyll sites. | |
901 |
| -| [jekyll-feed][jekyll-feed] | A Jekyll plugin to generate an Atom (RSS-like) feed of your Jekyll posts. | |
902 |
| -| [jemoji][jemoji] | GitHub-flavored emoji plugin for Jekyll. | |
| 897 | +| Plugin | Description | |
| 898 | +| --- | --- | |
| 899 | +| [jekyll-paginate][jekyll-paginate] | Pagination Generator for Jekyll. | |
| 900 | +| [jekyll-sitemap][jekyll-sitemap] | Jekyll plugin to silently generate a sitemaps.org compliant sitemap for your Jekyll site. | |
| 901 | +| [jekyll-gist][jekyll-gist] | Liquid tag for displaying GitHub Gists in Jekyll sites. | |
| 902 | +| [jekyll-feed][jekyll-feed] | A Jekyll plugin to generate an Atom (RSS-like) feed of your Jekyll posts. | |
| 903 | +| [jemoji][jemoji] | GitHub-flavored emoji plugin for Jekyll. | |
| 904 | +| [jekyll-include-cache][jekyll-include-cache] | Liquid tag that caches Liquid includes. | |
903 | 905 |
|
904 | 906 | [jekyll-paginate]: https://github.com/jekyll/jekyll-paginate
|
905 | 907 | [jekyll-sitemap]: https://github.com/jekyll/jekyll-sitemap
|
906 | 908 | [jekyll-gist]: https://github.com/jekyll/jekyll-gist
|
907 | 909 | [jekyll-feed]: https://github.com/jekyll/jekyll-feed
|
908 | 910 | [jemoji]: https://github.com/jekyll/jemoji
|
| 911 | +[jekyll-include-cache]: https://github.com/benbalter/jekyll-include-cache |
909 | 912 |
|
910 | 913 | If you're hosting elsewhere then you don't really have to worry about what is whitelisted as you are free to include whatever [Jekyll plugins](https://jekyllrb.com/docs/plugins/) you desire.
|
911 | 914 |
|
| 915 | +**Note:** The [jekyll-include-cache](https://github.com/benbalter/jekyll-include-cache) plugin needs to be installed in your `Gemfile` and added to the `plugins` array of `_config.yml`. Otherwise you'll throw `Unknown tag 'include_cached'` errors at build. |
| 916 | +{: .notice--warning} |
| 917 | + |
912 | 918 | ## Archive Settings
|
913 | 919 |
|
914 | 920 | The theme ships with support for taxonomy (category and tag) pages. GitHub Pages hosted sites need to use a _Liquid only_ approach while those hosted elsewhere can use plugins like [**jekyll-archives**][jekyll-archives] to generate these pages automatically.
|
|
0 commit comments