diff --git a/_config.yml b/_config.yml index 093a42a..4b93827 100644 --- a/_config.yml +++ b/_config.yml @@ -35,3 +35,6 @@ color_scheme: nil # Google Analytics Tracking (optional) # e.g, UA-1234567-89 ga_tracking: UA-2709176-10 + +plugins: + - jekyll-seo-tag \ No newline at end of file diff --git a/_includes/head.html b/_includes/head.html index fa5dee7..026c68f 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -23,4 +23,6 @@ + +{% seo %} diff --git a/_layouts/default.html b/_layouts/default.html index 06662ee..2d5fe6b 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,6 +1,6 @@ - + {% include head.html %} diff --git a/just-the-docs.gemspec b/just-the-docs.gemspec index 18e9876..27dfa9b 100644 --- a/just-the-docs.gemspec +++ b/just-the-docs.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |spec| spec.name = "just-the-docs" - spec.version = "0.2.3" + spec.version = "0.2.4" spec.authors = ["Patrick Marsceill"] spec.email = ["patrick.marsceill@gmail.com"] @@ -14,6 +14,7 @@ Gem::Specification.new do |spec| spec.executables << 'just-the-docs' spec.add_runtime_dependency "jekyll", "~> 3.8.5" + spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.0" spec.add_runtime_dependency "rake", "~> 12.3.1" spec.add_development_dependency "bundler", "~> 2.0.1" diff --git a/package.json b/package.json index 13af889..35ae6d1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "just-the-docs", - "version": "0.2.3", + "version": "0.2.4", "description": "A modern Jekyll theme for documentation", "repository": "pmarsceill/just-the-docs", "license": "MIT",