2019-11-04 13:09:44 +00:00
|
|
|
{{ range .AlternativeOutputFormats -}}
|
|
|
|
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" title="{{ .Name }}" href="{{ .Permalink | safeURL }}">
|
|
|
|
{{ end -}}
|
|
|
|
<meta name="description" content="{{if .IsHome}}{{ $.Site.Params.description }}{{else}}{{.Description}}{{end}}" />
|
2019-12-03 13:13:16 +00:00
|
|
|
<meta name="keywords" content="{{ delimit .Keywords "," }}">
|
2019-11-04 13:09:44 +00:00
|
|
|
<meta name="created" content="{{ .Date.Format "2006-01-02T15:04:05-0700" }}">
|
|
|
|
<meta name="modified" content="{{ .Lastmod.Format "2006-01-02T15:04:05-0700" }}">
|
|
|
|
{{ with $.Param "author" }}<meta name="author" content="{{ . }}">{{ end }}
|
|
|
|
{{ with $.Param "contact" }}<meta name="contact" content="{{ . }}">{{ end }}
|
|
|
|
<meta property="og:site_name" content="{{ .Site.Title }}">
|
|
|
|
<meta property="og:title" content="{{ .Title }}">
|
|
|
|
<meta property="og:url" content="{{ .Permalink }}">
|
|
|
|
<meta property="og:type" content="{{ if .IsPage }}article{{ else }}website{{ end }}">
|
|
|
|
{{ with $.Param "image" }}<meta property="og:image" content="{{ . | absURL }}">{{ end }}
|
|
|
|
{{ hugo.Generator }}
|
|
|
|
<meta name="msapplication-TileColor" content="{{ $.Param "themecolor" | default "#ffffff" }}">
|
|
|
|
<meta name="theme-color" content="{{ $.Param "themecolor" | default "#ffffff" }}">
|
|
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
|
|
|
<link rel="apple-touch-icon" href="{{ "apple-touch-icon.png" | relURL }}">
|
2019-12-18 00:57:06 +00:00
|
|
|
<link rel="shortcut icon" href="{{ "favicon.png" | relURL }}" type="image/x-icon">
|
|
|
|
<link rel="shortcut icon" href="{{ "favicon.ico" | relURL }}" type="image/x-icon">
|
|
|
|
<link rel="icon" href="{{ "logo.svg" | relURL }}" sizes="any" type="image/svg+xml" />
|
2020-01-06 16:41:38 +00:00
|
|
|
<link rel="manifest" href="{{ "manifest.json" | relURL }}">
|