2022-04-04 16:20:04 +00:00
|
|
|
<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">
|
2022-05-09 11:30:10 +00:00
|
|
|
<script src="https://unpkg.com/@master/style@1.5.0"></script>
|
|
|
|
<script src="https://unpkg.com/@master/styles@1.13.0"></script>
|
2022-04-09 23:28:54 +00:00
|
|
|
<script src="https://unpkg.com/master-styles-group"></script>
|
2022-05-21 16:49:00 +00:00
|
|
|
<script src="https://unpkg.com/themes.js"></script>
|
2022-10-09 09:18:54 +00:00
|
|
|
<script>window.themes = window.themes || new window.Themes()</script>
|
2022-05-24 12:52:30 +00:00
|
|
|
|
2023-05-11 21:13:55 +00:00
|
|
|
<style>
|
|
|
|
:root {
|
|
|
|
--font-sans: "Inter var", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2022-05-24 12:52:30 +00:00
|
|
|
{{- partial "head-extra.html" . -}}
|
2022-04-04 16:20:04 +00:00
|
|
|
</head>
|