22 lines
1.2 KiB
HTML
22 lines
1.2 KiB
HTML
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} — {{ .Site.Title }}{{ end }}</title>
|
|
{{ with .Description }}<meta name="description" content="{{ . }}">{{ end }}
|
|
{{ with .Params.summary }}<meta name="description" content="{{ . }}">{{ end }}
|
|
<meta name="generator" content="Hugo {{ hugo.Version }}">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=IBM+Plex+Mono:wght@400&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="{{ "css/main.css" | relURL }}">
|
|
{{ with .OutputFormats.Get "rss" -}}
|
|
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink }}" title="{{ $.Site.Title }}">
|
|
{{- end }}
|
|
{{ with .Site.Params.googleAnalytics -}}
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id={{ . }}"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
gtag('config', '{{ . }}');
|
|
</script>
|
|
{{- end }}
|