mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-24 21:20:17 +01:00
663f3db2a0
* Add Vim modeline comments to all relevent template files. * Add Vim modeline comments to a few other files. * Move modeline comments inside the template definitions in list and single. For some odd reason, putting them outside breaks the page generation. * Use template comments for modeline comments in templates. * Fix form 2 modelines.
25 lines
961 B
HTML
25 lines
961 B
HTML
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
{{ "<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->" | safeHTML }}
|
|
|
|
{{ template "_internal/opengraph.html" . }}
|
|
{{ template "_internal/schema.html" . }}
|
|
{{ template "_internal/twitter_cards.html" . }}
|
|
|
|
{{ if .Site.Params.google_verify_meta }}
|
|
<meta name="google-site-verification" content="{{ .Site.Params.google_verify_meta }}" />
|
|
{{ end }}
|
|
|
|
{{ if .Site.Params.bing_verify_meta }}
|
|
<meta name="msvalidate.01" content="{{ .Site.Params.bing_verify_meta }}" />
|
|
{{ end }}
|
|
|
|
{{ if .Site.Params.yandex_verify_meta }}
|
|
<meta name="yandex-verification" content="{{ .Site.Params.yandex_verify_meta }}" />
|
|
{{ end }}
|
|
|
|
{{ .Hugo.Generator }}
|
|
|
|
{{- /* vim: set ts=2 sw=2 et: */}}
|