19 lines
676 B
HTML
19 lines
676 B
HTML
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{{ with .Site.Params.description -}}
|
|
<meta name="description" content="{{ . }}">
|
|
{{ end }}
|
|
<link rel="canonical" href="{{ .Permalink }}" />
|
|
<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} - {{ .Site.Title }}{{ end }}</title>
|
|
|
|
{{ with .OutputFormats.Get "rss" -}}
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s">` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
|
{{ end -}}
|
|
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
|
|
<script>
|
|
document.documentElement.setAttribute('data-theme', 'dark');
|
|
</script>
|
|
</head>
|