58 lines
1.7 KiB
HTML
58 lines
1.7 KiB
HTML
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<!-- Assets (cache busting applied )-->
|
|
{{ partialCached "head/css.html" . }}
|
|
|
|
<!-- Title -->
|
|
<title>{{ if eq .RelPermalink "/404.html" }}404 | {{ .Site.Title }}{{ else if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} | {{ .Site.Title }}{{ end }}</title>
|
|
|
|
<!-- Metadata -->
|
|
<meta name="description" content="{{ site.Params.description }}" />
|
|
<meta name="robots" content="index, follow" />
|
|
<meta name="canonical" href="{{ .RelPermalink }}" />
|
|
|
|
<!-- Icons -->
|
|
<link
|
|
rel="apple-touch-icon"
|
|
sizes="180x180"
|
|
href="{{ site.Params.assets.appleTouchIcon | default "apple-touch-icon.png" | absURL }}"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
href="{{ site.Params.assets.favicon | default "favicon.ico" |absURL }}"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="32x32"
|
|
href="{{ site.Params.assets.favicon32 | default "favicon-32x32.png" | absURL }}"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="16x16"
|
|
href="{{ site.Params.assets.favicon16 | default "favicon-16x16.png" | absURL }}"
|
|
/>
|
|
<link
|
|
rel="manifest"
|
|
href="{{ site.Params.assets.manifest | default "manifest.json" }}"
|
|
/>
|
|
<link
|
|
rel="mask-icon"
|
|
href="{{ site.Params.assets.safariPinnedTabIcon | default "safari-pinned-tab.svg" | absURL }}"
|
|
color="{{ site.Params.assets.safariPinnedTabColor | default "#030303" }}"
|
|
/>
|
|
<meta
|
|
name="msapplication-TileColor"
|
|
content="{{ site.Params.assets.msTileColor | default "#2b5797" }}"
|
|
/>
|
|
<meta
|
|
name="msapplication-TileImage"
|
|
content="{{ site.Params.assets.msTileIcon | default "mstile-150x150.png" }}"
|
|
/>
|
|
<meta
|
|
name="theme-color"
|
|
content="{{ site.Params.assets.themeColor | default "#030303" }}"
|
|
/>
|