Add jekyll-seo-tag
This commit is contained in:
parent
1f460646a7
commit
de4c073e8b
1
Gemfile
1
Gemfile
|
@ -20,6 +20,7 @@ gem "minima", "~> 2.0"
|
||||||
# If you have any plugins, put them here!
|
# If you have any plugins, put them here!
|
||||||
group :jekyll_plugins do
|
group :jekyll_plugins do
|
||||||
gem "jekyll-feed", "~> 0.6"
|
gem "jekyll-feed", "~> 0.6"
|
||||||
|
gem 'jekyll-seo-tag'
|
||||||
gem 'jekyll-stealthy-share', git: 'https://github.com/rfwatson/jekyll-stealthy-share.git'
|
gem 'jekyll-stealthy-share', git: 'https://github.com/rfwatson/jekyll-stealthy-share.git'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,8 @@ GEM
|
||||||
jekyll (~> 3.3)
|
jekyll (~> 3.3)
|
||||||
jekyll-sass-converter (1.5.1)
|
jekyll-sass-converter (1.5.1)
|
||||||
sass (~> 3.4)
|
sass (~> 3.4)
|
||||||
|
jekyll-seo-tag (2.4.0)
|
||||||
|
jekyll (~> 3.3)
|
||||||
jekyll-watch (1.5.1)
|
jekyll-watch (1.5.1)
|
||||||
listen (~> 3.0)
|
listen (~> 3.0)
|
||||||
kramdown (1.16.2)
|
kramdown (1.16.2)
|
||||||
|
@ -59,6 +61,7 @@ PLATFORMS
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
jekyll (~> 3.6.2)
|
jekyll (~> 3.6.2)
|
||||||
jekyll-feed (~> 0.6)
|
jekyll-feed (~> 0.6)
|
||||||
|
jekyll-seo-tag
|
||||||
jekyll-stealthy-share!
|
jekyll-stealthy-share!
|
||||||
minima (~> 2.0)
|
minima (~> 2.0)
|
||||||
tzinfo-data
|
tzinfo-data
|
||||||
|
|
|
@ -31,6 +31,7 @@ theme: minima
|
||||||
plugins:
|
plugins:
|
||||||
- jekyll-feed
|
- jekyll-feed
|
||||||
- jekyll-stealthy-share
|
- jekyll-stealthy-share
|
||||||
|
- jekyll-seo-tag
|
||||||
|
|
||||||
# Exclude from processing.
|
# Exclude from processing.
|
||||||
# The following items will not be processed, by default. Create a custom list
|
# The following items will not be processed, by default. Create a custom list
|
||||||
|
|
|
@ -15,4 +15,6 @@
|
||||||
{% if jekyll.environment == 'production' and site.google_analytics %}
|
{% if jekyll.environment == 'production' and site.google_analytics %}
|
||||||
{% include google-analytics.html %}
|
{% include google-analytics.html %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{% seo %}
|
||||||
</head>
|
</head>
|
||||||
|
|
Loading…
Reference in New Issue