Merge branch 'master' of https://github.com/mmistakes/jekyll-theme-basically-basic
This commit is contained in:
commit
3bc7434e75
|
@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [Unreleased]
|
||||
### Changed
|
||||
- Change `gems` key in `_config.yml` to `plugins`. [#23](https://github.com/mmistakes/jekyll-theme-basically-basic/pull/23)
|
||||
|
||||
### Added
|
||||
### Changed
|
||||
|
|
|
@ -30,7 +30,7 @@ logo: # path of site logo, e.g. "/assets/images/logo.png"
|
|||
# Build settings
|
||||
markdown: kramdown
|
||||
theme: jekyll-theme-basically-basic
|
||||
gems:
|
||||
plugins:
|
||||
- jekyll-feed
|
||||
- jekyll-seo-tag
|
||||
- jekyll-sitemap
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
{% endif %}
|
||||
|
||||
<li>
|
||||
{% if site.gems contains 'jekyll-feed' %}
|
||||
{% if site.plugins contains 'jekyll-feed' %}
|
||||
<a href="{{ site.feed.path | default: 'feed.xml' | relative_url }}" title="Atom Feed">
|
||||
<span class="icon icon--rss">{% include icon-rss.svg %}</span>
|
||||
<span class="label">{{ site.data.theme.t.subscribe | default: 'Subscribe' }}</span>
|
||||
|
|
|
@ -13,7 +13,7 @@ layout: default
|
|||
<h2>{{ site.data.theme.t.posts | default: 'Posts' }}{% if paginator.page > 1 %}{{ site.data.theme.t.page | default: 'Page' | prepend: ' - ' | append: ' ' }}{{ paginator.page }} {{ site.data.theme.t.of | default: 'of' }} {{ paginator.total_pages }}{% endif %}</h2>
|
||||
</header>
|
||||
<div class="entries">
|
||||
{% if site.gems contains 'jekyll-paginate' and page.paginate %}
|
||||
{% if site.plugins contains 'jekyll-paginate' and page.paginate %}
|
||||
{% comment %}
|
||||
Add paginator.posts loop if jekyll-paginate plugin is enabled
|
||||
and page.paginate == true
|
||||
|
|
|
@ -51,7 +51,7 @@ permalink: /:categories/:title/
|
|||
timezone: America/New_York # http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
||||
|
||||
# Plugins
|
||||
gems:
|
||||
plugins:
|
||||
- jekyll-feed
|
||||
- jekyll-seo-tag
|
||||
- jekyll-sitemap
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
{% endif %}
|
||||
|
||||
<li>
|
||||
{% if site.gems contains 'jekyll-feed' %}
|
||||
{% if site.plugins contains 'jekyll-feed' %}
|
||||
<a href="{{ site.feed.path | default: 'feed.xml' | relative_url }}" title="Atom Feed">
|
||||
<span class="icon icon--rss">{% include icon-rss.svg %}</span>
|
||||
<span class="label">{{ site.data.theme.t.subscribe | default: 'Subscribe' }}</span>
|
||||
|
|
|
@ -13,7 +13,7 @@ layout: default
|
|||
<h2>{{ site.data.theme.t.posts | default: 'Posts' }}{% if paginator.page > 1 %}{{ site.data.theme.t.page | default: 'Page' | prepend: ' - ' | append: ' ' }}{{ paginator.page }} {{ site.data.theme.t.of | default: 'of' }} {{ paginator.total_pages }}{% endif %}</h2>
|
||||
</header>
|
||||
<div class="entries">
|
||||
{% if site.gems contains 'jekyll-paginate' and page.paginate %}
|
||||
{% if site.plugins contains 'jekyll-paginate' and page.paginate %}
|
||||
{% comment %}
|
||||
Add paginator.posts loop if jekyll-paginate plugin is enabled
|
||||
and page.paginate == true
|
||||
|
|
|
@ -34,7 +34,7 @@ liquid:
|
|||
# Build settings
|
||||
markdown: kramdown
|
||||
theme: jekyll-theme-basically-basic
|
||||
gems:
|
||||
plugins:
|
||||
- jekyll-feed
|
||||
- jekyll-seo-tag
|
||||
- jekyll-sitemap
|
||||
|
|
Loading…
Reference in New Issue