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

github.com/Fastbyte01/KeepIt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiuseppe Pignataro <rogepix@gmail.com>2019-03-24 11:33:49 +0300
committerGiuseppe Pignataro <rogepix@gmail.com>2019-03-24 11:33:49 +0300
commit2b9a93b91737792ff5dd5a0c77fca04604f9d3e7 (patch)
treee5e6b2371907832924bc4c98f0e9569471d69a0d
parentb6a4d09f3cae97a244ca876914ce5f3f75e5e404 (diff)
Added pinterest verification
Added the ability to simply verify the site with pinterest
-rw-r--r--exampleSite/config.toml1
-rw-r--r--layouts/partials/head.html1
2 files changed, 2 insertions, 0 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index a542506..93f3e49 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -49,6 +49,7 @@ disqusShortname = "yourdiscussshortname"
google_verification = ""
bing_verification = ""
yandex_verification = ""
+ pinterest_verification = ""
socialShare = true
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index caebb4b..8ec0cc7 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -6,6 +6,7 @@
{{ with .Site.Params.google_verification }}<meta name="google-site-verification" content="{{ . }}" />{{ end }}
{{ with .Site.Params.bing_verification }}<meta name="msvalidate.01" content="{{ . }}" />{{end}}
{{ with .Site.Params.yandex_verification }}<meta name="yandex-verification" content="{{ . }}" />{{ end }}
+ {{ with .Site.Params.pinterest_verification }}<meta name="p:domain_verify" content="{{ . }}"/>{{ end }}
{{ if .PrevInSection }}<link rel="prev" href="{{.PrevInSection.Permalink}}" />{{end}}
{{ if .NextInSection}}<link rel="next" href="{{ .NextInSection.Permalink }}" />{{end}}
<link rel="canonical" href="{{ .Permalink }}" />