1
0
mirror of https://github.com/thangisme/notes.git synced 2024-12-22 09:16:25 -05:00

Merge pull request #95 from gebeto/master

Add SEO and 'lang' param for `_config`
This commit is contained in:
Patrick Marsceill 2019-04-30 17:35:22 -07:00 committed by GitHub
commit f9e03e1248
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 3 deletions

View File

@ -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

View File

@ -23,4 +23,6 @@
<script type="text/javascript" src="{{ "/assets/js/just-the-docs.js" | absolute_url }}"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
{% seo %}
</head>

View File

@ -1,6 +1,6 @@
<!DOCTYPE html>
<html lang="en-us">
<html lang="{{ site.lang | default: "en-US" }}">
{% include head.html %}
<body>

View File

@ -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"

View File

@ -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",