24 lines
901 B
HTML
24 lines
901 B
HTML
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="test-check" content="hello from override">
|
|
|
|
<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} | {{ .Site.Title }}{{ end }}</title>
|
|
|
|
{{ with .Params.description }}
|
|
<meta name="description" content="{{ . }}">
|
|
{{ else }}
|
|
{{ if .Site.Params.description }}
|
|
<meta name="description" content="{{ .Site.Params.description }}">
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
<!-- Favicon support -->
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
|
<link rel="icon" type="image/png" sizes="48x48" href="/favicon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16.png">
|
|
<link rel="apple-touch-icon" href="/favicon-48.png">
|
|
|
|
{{ partial "styles.html" . }}
|
|
</head>
|