hugo-tufte/layouts/partials/header.html
loikein 6f6536e8ac
Some checks failed
Test Build / deploy (push) Has been cancelled
cleanup for changing env
2024-11-19 01:28:46 +00:00

16 lines
668 B
HTML

<head>
<title>{{ .Title }} - {{ .Site.Title }}</title>
<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 }}" />
<!-- 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 }}
{{ partial "header.includes.html" . }}
</head>