2015-12-30 03:35:20 +01:00
|
|
|
<head>
|
2023-04-24 03:18:29 +02:00
|
|
|
<title>{{ .Title }} - {{ .Site.Title }}</title>
|
2021-07-21 20:23:55 +02:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
|
|
|
|
<meta name="description"
|
|
|
|
content="{{ with .Description }}{{ . }}{{ else }}{{ with .Summary }}{{ . }}{{ else }}{{ .Site.Params.description }}{{end }}{{ end }} ">
|
|
|
|
<link rel="canonical" href="{{ .Permalink }}" />
|
2023-04-17 18:20:14 +02:00
|
|
|
<!-- favicon -->
|
|
|
|
{{ if .Site.Params.favicon }}
|
|
|
|
<link rel="icon" href="{{ .Site.Params.favicon | absURL }}" />
|
|
|
|
{{ end }}
|
|
|
|
{{ if .Site.Params.touchicon }}
|
|
|
|
<link rel="apple-touch-icon" href="{{ .Site.Params.touchicon | absURL }}" />
|
|
|
|
{{ end }}
|
2015-12-30 03:35:20 +01:00
|
|
|
{{ partial "header.includes.html" . }}
|
|
|
|
</head>
|