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

github.com/yanlinlin82/simple-style.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/html-meta.html')
-rw-r--r--layouts/partials/html-meta.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/layouts/partials/html-meta.html b/layouts/partials/html-meta.html
new file mode 100644
index 0000000..3810136
--- /dev/null
+++ b/layouts/partials/html-meta.html
@@ -0,0 +1,15 @@
+{{ with .Site.Params.googleSiteVerification -}}
+<meta name="google-site-verification" content="{{ . }}">
+{{ end -}}
+{{ with .Site.Params.author -}}
+<meta name="author" content="{{ . }}">
+{{ end -}}
+{{ with .Site.Params.description -}}
+<meta name="description" content="{{ . }}">
+{{ end -}}
+{{ with .Site.Params.keywords -}}
+<meta name="keywords" content="{{ . }}">
+{{ end -}}
+{{ with .Site.Params.referrer -}}
+<meta name="referrer" content="{{ . }}">
+{{ end -}}