11 lines
568 B
HTML
11 lines
568 B
HTML
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="description" content="{{ .Site.Params.description | default "The HTML5 Herald" }}" />
|
|
<meta name="author" content="{{ .Params.Author | default .Site.Params.Author.name }}" />
|
|
{{- with .OutputFormats.Get "rss" -}}
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
|
{{- end -}}
|
|
{{ template "_internal/opengraph.html" . }}
|
|
{{ template "_internal/twitter_cards.html" . }}
|
|
{{ hugo.Generator -}}
|