Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/humrochagf/colordrop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHumberto Rocha <humrochagf@gmail.com>2019-07-31 22:18:09 +0300
committerHumberto Rocha <humrochagf@gmail.com>2019-07-31 22:18:09 +0300
commit62b39f7c4d6438fd6fe996560571ca4c5578ff94 (patch)
treebbaf97616ccad7a398e41b1e6280220f39ae60c7 /layouts/partials
parent02a9c1a51d9c5cc377b77b3f7138ba45f8f5113e (diff)
Improve meta info
Diffstat (limited to 'layouts/partials')
-rw-r--r--layouts/partials/blog-jsonld.html3
-rw-r--r--layouts/partials/blog-post-jsonld.html19
-rw-r--r--layouts/partials/meta.html6
3 files changed, 14 insertions, 14 deletions
diff --git a/layouts/partials/blog-jsonld.html b/layouts/partials/blog-jsonld.html
index 92cd5b6..7f5695f 100644
--- a/layouts/partials/blog-jsonld.html
+++ b/layouts/partials/blog-jsonld.html
@@ -1,6 +1,9 @@
{
"@context": "http://schema.org",
"@type": "Blog",
+ "url": "{{ .Permalink }}",
+ "headline": "{{ .Title | humanize | title }} - {{ .Site.Title }}",
+ "description": "{{ .Site.Params.description }}",
"author": {
"@type": "Person",
"name": "{{ .Site.Params.author.name }}",
diff --git a/layouts/partials/blog-post-jsonld.html b/layouts/partials/blog-post-jsonld.html
index 5127ffc..30a79bd 100644
--- a/layouts/partials/blog-post-jsonld.html
+++ b/layouts/partials/blog-post-jsonld.html
@@ -1,21 +1,18 @@
{
"@context": "http://schema.org",
"@type": "BlogPosting",
- "headline": "{{ .Title }}",
"url": "{{ .Permalink }}",
- "datePublished": "{{ .PublishDate.Format "2006-01-02" }}",
+ "headline": "{{ .Title }}",
"description": "{{ .Description }}",
+ "datePublished": "{{ .PublishDate.Format "2006-01-02" }}",
{{ if .Params.Tags }}
- "keywords": "{{ delimit .Params.Tags " " }}",
+ "keywords": "{{ delimit .Params.Tags "," }}",
+ {{ end }}
+ {{ if .Params.shareImage }}
+ "image": "{{ .Params.shareImage | absURL }}",
+ {{ else }}
+ "image": "{{ .Site.Params.siteLogo | absURL }}",
{{ end }}
- "image": {
- "@type": "ImageObject",
- {{ if .Params.shareImage }}
- "url": "{{ .Params.shareImage | absURL }}"
- {{ else }}
- "url": "{{ .Site.Params.siteLogo | absURL }}"
- {{ end }}
- },
"author": {
"@type": "Person",
"name": "{{ .Site.Params.author.name }}",
diff --git a/layouts/partials/meta.html b/layouts/partials/meta.html
index 04dd986..2936587 100644
--- a/layouts/partials/meta.html
+++ b/layouts/partials/meta.html
@@ -34,7 +34,7 @@
<meta name="theme-color" content="#ffffff" />
<!-- Google+ -->
-<meta itemprop="name" content="{{ .Title }}" />
+<meta itemprop="name" content="{{ .Title | humanize | title }}" />
<meta itemprop="description" content="{{ index .Params "description" | default .Site.Params.description }}" />
{{ if .Params.shareImage }}
<meta itemprop="image" content="{{ .Params.shareImage | absURL }}" />
@@ -44,7 +44,7 @@
<!-- Facebook -->
<meta property="og:site_name" content="{{ .Site.Title }}" />
-<meta property="og:title" content="{{ .Title }}" />
+<meta property="og:title" content="{{ .Title | humanize | title }}" />
<meta property="og:description" content="{{ index .Params "description" | default .Site.Params.description }}" />
<meta property="og:url" content="{{ .Permalink }}" />
<meta property="og:type" content="article" />
@@ -58,7 +58,7 @@
<meta name="twitter:url" content="{{ .Permalink }}" />
<meta name="twitter:site" content="@{{ .Site.Params.twitter }}" />
<meta name="twitter:creator" content="@{{ .Site.Params.author.twitter }}" />
-<meta name="twitter:title" content="{{ .Title }}" />
+<meta name="twitter:title" content="{{ .Title | humanize | title }}" />
<meta name="twitter:description" content="{{ index .Params "description" | default .Site.Params.description }}" />
{{ if .Params.shareImage }}
<meta name="twitter:card" content="summary_large_image" />