From d0b81243ab78df6a155b8c11e85329cdfc2bc968 Mon Sep 17 00:00:00 2001
From: hyperized <gerben@hyperized.net>
Date: Sun, 13 Sep 2020 14:21:51 +0000
Subject: [PATCH] Fix googleSiteVerify
---
layouts/partials/head.html | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index a603e09..a76fd71 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -42,9 +42,9 @@
{{- end -}}
{{- end -}}
- {{- if isset .Params "googleSiteVerify" }}
+ {{- if .Site.Params.googleSiteVerify }}
<!-- Google Site Verification -->
- <meta name="google-site-verification" content="{{ .Param "googleSiteVerify" }}">
+ <meta name="google-site-verification" content="{{ .Site.Params.googleSiteVerify }}">
{{- end -}}
{{- if ne $js "" -}}
@@ -54,4 +54,4 @@
<!-- Twitter Cards -->
{{ template "_internal/twitter_cards.html" . }}
-</head>
\ No newline at end of file
+</head>
--
Gitblit v1.10.0