Head
Updated on
Last site update: 8 May 2024
1<head>
2 <meta charset="UTF-8">
3 <meta name="viewport" content="width=device-width, initial-scale=1">
4 <meta http-equiv="X-UA-Compatible" content="IE=edge">
5 <title>{{ .Title }} | {{ .Site.Title }}</title>
6 {{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
7 {{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
8 <link rel="stylesheet" href="{{ "css/style.css" | relURL }}">
9 {{ with .OutputFormats.Get "RSS" -}}
10 {{ printf `<link rel="%s" type="%s" href="%s" title="%s">` .Rel .MediaType.Type .RelPermalink $.Site.Title | safeHTML }}
11 {{- end }}
12</head>