26 lines
1.0 KiB
HTML
26 lines
1.0 KiB
HTML
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
|
|
|
<title>{{ if not .IsHome }}{{ .Title }} - {{ end }}{{ site.Title }}</title>
|
|
|
|
<!-- Meta -->
|
|
{{ if eq .Kind "page" }}
|
|
<meta name="description" content="{{ .Summary }}" />
|
|
<meta name="author" content="{{ .Params.Author | default site.Author.name }}" />
|
|
{{ else }}
|
|
<meta name="description" content="{{ site.Params.description }}" />
|
|
<meta name="author" content="{{ site.Author.name }}" />
|
|
{{ end }}
|
|
|
|
<link href="https://unpkg.com/@master/normal.css" rel="stylesheet">
|
|
<script src="https://unpkg.com/@master/style@1.5.0"></script>
|
|
<script src="https://unpkg.com/@master/styles@1.13.0"></script>
|
|
<script src="https://unpkg.com/master-styles-group"></script>
|
|
|
|
<script>
|
|
window.matchMedia('(prefers-color-scheme: dark)').matches && document.documentElement.classList.add("dark");
|
|
</script>
|
|
</head>
|