adding jekyll-seo-tag plugin
This commit is contained in:
parent
3a24359c92
commit
34a2fde803
3
Gemfile
3
Gemfile
|
@ -2,5 +2,6 @@ source "https://rubygems.org"
|
||||||
|
|
||||||
gem "jekyll", "~> 3.0"
|
gem "jekyll", "~> 3.0"
|
||||||
gem "jekyll-sitemap"
|
gem "jekyll-sitemap"
|
||||||
|
gem "jekyll-seo-tag"
|
||||||
gem "jekyll-gist"
|
gem "jekyll-gist"
|
||||||
gem "octopress"
|
gem "octopress"
|
||||||
|
|
|
@ -33,6 +33,8 @@ GEM
|
||||||
octokit (~> 4.2)
|
octokit (~> 4.2)
|
||||||
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-sitemap (1.1.1)
|
jekyll-sitemap (1.1.1)
|
||||||
jekyll (~> 3.3)
|
jekyll (~> 3.3)
|
||||||
jekyll-watch (2.0.0)
|
jekyll-watch (2.0.0)
|
||||||
|
@ -87,6 +89,7 @@ PLATFORMS
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
jekyll (~> 3.0)
|
jekyll (~> 3.0)
|
||||||
jekyll-gist
|
jekyll-gist
|
||||||
|
jekyll-seo-tag
|
||||||
jekyll-sitemap
|
jekyll-sitemap
|
||||||
octopress
|
octopress
|
||||||
|
|
||||||
|
|
|
@ -56,6 +56,7 @@ sass:
|
||||||
style: compressed
|
style: compressed
|
||||||
plugins:
|
plugins:
|
||||||
- jekyll-sitemap
|
- jekyll-sitemap
|
||||||
|
- jekyll-seo-tag
|
||||||
|
|
||||||
kramdown:
|
kramdown:
|
||||||
auto_ids: true
|
auto_ids: true
|
||||||
|
|
|
@ -49,3 +49,6 @@
|
||||||
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="{{ site.url }}/images/apple-touch-icon-114x114-precomposed.png">
|
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="{{ site.url }}/images/apple-touch-icon-114x114-precomposed.png">
|
||||||
<!-- 144x144 (precomposed) for iPad 3rd and 4th generation -->
|
<!-- 144x144 (precomposed) for iPad 3rd and 4th generation -->
|
||||||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.url }}/images/apple-touch-icon-144x144-precomposed.png">
|
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.url }}/images/apple-touch-icon-144x144-precomposed.png">
|
||||||
|
|
||||||
|
<!--Jekyll-seo plugin-->
|
||||||
|
{% seo %}
|
||||||
|
|
Loading…
Reference in New Issue