1
0
mirror of https://github.com/alanorth/hugo-theme-bootstrap4-blog.git synced 2024-06-26 16:13:45 +02:00

layouts/partials/head-meta.html: Trim whitespace around tags

It's the right thing to do.
This commit is contained in:
Alan Orth 2017-01-19 14:57:03 +02:00
parent 113eac717b
commit b1f07d1bbc
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9

View File

@ -5,18 +5,18 @@
{{ template "_internal/schema.html" . }}
{{ template "_internal/twitter_cards.html" . }}
{{ with .Site.Params.google_verify_meta }}
{{- with .Site.Params.google_verify_meta -}}
<meta name="google-site-verification" content="{{ . }}" />
{{ end }}
{{ with .Site.Params.bing_verify_meta }}
{{- with .Site.Params.bing_verify_meta -}}
<meta name="msvalidate.01" content="{{ . }}" />
{{ end }}
{{ with .Site.Params.yandex_verify_meta }}
{{- with .Site.Params.yandex_verify_meta -}}
<meta name="yandex-verification" content="{{ . }}" />
{{ end }}
{{ .Hugo.Generator }}
{{- .Hugo.Generator -}}
{{- /* vim: set ts=2 sw=2 et: */}}