mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-19 10:47:04 +01:00
Alan Orth
2e04a8ce26
Hugo's current handling of dates in the opengraph partial needs nome work to be more correct—for example: the usage of published and updated times. This comes verbatim from the Hugo source tree. See: tpl/template_embedded.go
22 lines
580 B
HTML
22 lines
580 B
HTML
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
{{ partial "opengraph.html" . }}
|
|
{{ template "_internal/twitter_cards.html" . }}
|
|
|
|
{{- with .Site.Params.google_verify_meta -}}
|
|
<meta name="google-site-verification" content="{{ . }}" />
|
|
{{ end }}
|
|
|
|
{{- with .Site.Params.bing_verify_meta -}}
|
|
<meta name="msvalidate.01" content="{{ . }}" />
|
|
{{ end }}
|
|
|
|
{{- with .Site.Params.yandex_verify_meta -}}
|
|
<meta name="yandex-verification" content="{{ . }}" />
|
|
{{ end }}
|
|
|
|
{{- .Hugo.Generator -}}
|
|
|
|
{{- /* vim: set ts=2 sw=2 et: */}}
|