2020-09-09 22:56:54 +02:00
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<meta
|
|
|
|
name="description"
|
|
|
|
content="{{ if .IsHome }}{{ $.Site.Params.Subtitle }}{{ else }}{{ .Summary | plainify }}{{ end }}"
|
|
|
|
/>
|
|
|
|
<meta
|
|
|
|
name="keywords"
|
|
|
|
content="{{ with .Params.Keywords }}{{ delimit . ", " }}{{ else }}{{ $.Site.Params.Keywords }}{{ end }}"
|
|
|
|
/>
|
|
|
|
<meta name="robots" content="noodp" />
|
2018-07-20 19:14:22 +02:00
|
|
|
<link rel="canonical" href="{{ .Permalink }}" />
|
|
|
|
|
2019-07-16 02:38:33 +02:00
|
|
|
<!-- head custom -->
|
|
|
|
{{- partial "prepended_head.html" . }}
|
|
|
|
|
2019-01-28 17:20:40 +01:00
|
|
|
<!-- Theme CSS -->
|
2020-09-09 22:56:54 +02:00
|
|
|
<link rel="stylesheet" href="{{ "assets/style.css" | absURL }}" />
|
2019-01-28 17:20:40 +01:00
|
|
|
<!-- Custom CSS to override theme properties (/static/style.css) -->
|
2020-09-09 22:56:54 +02:00
|
|
|
<link rel="stylesheet" href="{{ "style.css" | absURL }}" />
|
2018-07-20 19:14:22 +02:00
|
|
|
|
|
|
|
<!-- Icons -->
|
2020-09-09 22:56:54 +02:00
|
|
|
<link
|
|
|
|
rel="apple-touch-icon-precomposed"
|
|
|
|
sizes="144x144"
|
|
|
|
href="{{ "img/apple-touch-icon-144-precomposed.png" | absURL }}"
|
|
|
|
/>
|
|
|
|
<link rel="shortcut icon" href="{{ "img/favicon.png" | absURL }}" />
|
|
|
|
|
|
|
|
<!-- Fonts -->
|
2020-09-10 00:04:48 +02:00
|
|
|
<link href="{{ "assets/fonts/Inter-Italic.woff2" | absURL }}" rel="preload" type="font/woff2" as="font" crossorigin="">
|
|
|
|
<link href="{{ "assets/fonts/Inter-Regular.woff2" | absURL }}" rel="preload" type="font/woff2" as="font" crossorigin="">
|
|
|
|
<link href="{{ "assets/fonts/Inter-Medium.woff2" | absURL }}" rel="preload" type="font/woff2" as="font" crossorigin="">
|
|
|
|
<link href="{{ "assets/fonts/Inter-MediumItalic.woff2" | absURL }}" rel="preload" type="font/woff2" as="font" crossorigin="">
|
|
|
|
<link href="{{ "assets/fonts/Inter-Bold.woff2" | absURL }}" rel="preload" type="font/woff2" as="font" crossorigin="">
|
|
|
|
<link href="{{ "assets/fonts/Inter-BoldItalic.woff2" | absURL }}" rel="preload" type="font/woff2" as="font" crossorigin="">
|
2018-07-20 19:14:22 +02:00
|
|
|
|
|
|
|
<!-- Twitter Card -->
|
2019-06-14 18:59:47 +02:00
|
|
|
{{ template "_internal/twitter_cards.html" . }}
|
2018-07-20 19:14:22 +02:00
|
|
|
|
|
|
|
<!-- OG data -->
|
2019-06-14 18:59:47 +02:00
|
|
|
{{ template "_internal/opengraph.html" . }}
|
2018-07-20 19:14:22 +02:00
|
|
|
|
2019-05-12 21:29:34 +02:00
|
|
|
<!-- RSS | JSON -->
|
|
|
|
{{ range .AlternativeOutputFormats -}}
|
2020-09-09 22:56:54 +02:00
|
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .RelPermalink $.Site.Title | safeHTML }}
|
2019-05-12 21:29:34 +02:00
|
|
|
{{ end -}}
|
2019-03-16 17:35:06 +01:00
|
|
|
|
|
|
|
<!-- head custom -->
|
2019-05-12 21:29:34 +02:00
|
|
|
{{- partial "extended_head.html" . }}
|