mirror of
https://github.com/loikein/hugo-tufte.git
synced 2024-11-15 12:56:57 +01:00
16 lines
670 B
HTML
16 lines
670 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>
|