2022-03-29 22:52:36 +00:00
|
|
|
<!DOCTYPE html>
|
2022-08-18 13:41:11 +00:00
|
|
|
<html lang='{{ .Language.Lang }}'>
|
2022-03-29 22:52:36 +00:00
|
|
|
<head>
|
2022-04-07 23:52:00 +00:00
|
|
|
<meta charset='UTF-8'>
|
|
|
|
<meta name='robots' content='index,follow'>
|
2022-08-18 13:41:11 +00:00
|
|
|
{{ if isset .Params "title" }}
|
|
|
|
<title>{{ site.Title }} - {{ .Title }}</title>
|
|
|
|
{{ else }}
|
|
|
|
<title>{{ site.Title }}</title>
|
|
|
|
{{ end }}
|
|
|
|
{{ if .Description }}
|
|
|
|
<meta name='description' content='{{ .Description }}'>
|
|
|
|
{{ end }}
|
|
|
|
{{ with resources.Get "favicon.png" }}
|
|
|
|
{{ with . | fingerprint }}
|
|
|
|
<link rel='icon' href='{{ .RelPermalink }}' integrity='{{ .Data.Integrity }}' />
|
|
|
|
{{ end }}
|
|
|
|
{{ with .Resize "192x192 png" | fingerprint }}
|
|
|
|
<link rel="apple-touch-icon" href="{{ .RelPermalink }}" integrity='{{ .Data.Integrity }}' />
|
|
|
|
{{ end }}
|
2022-04-07 15:52:18 +00:00
|
|
|
{{ end }}
|
2022-08-18 13:41:11 +00:00
|
|
|
<meta name='viewport' content='width=device-width,initial-scale=1.0'>
|
|
|
|
<meta name="theme-color" content="#00FF00" />
|
2022-03-29 22:52:36 +00:00
|
|
|
{{ block "meta" . }}
|
|
|
|
{{ end }}
|
2022-04-07 23:52:00 +00:00
|
|
|
<meta name='twitter:card' content='summary'>
|
|
|
|
<meta property='og:title' content='{{ site.Title }}' />
|
|
|
|
<meta property='og:url' content='{{ site.BaseURL }}' />
|
|
|
|
<meta property='og:site_name' content='{{ site.Title }}' />
|
|
|
|
<!-- <meta property='og:image' content=''> -->
|
2022-06-20 14:21:19 +00:00
|
|
|
{{ hugo.Generator }}
|
2022-03-29 22:52:36 +00:00
|
|
|
{{ range .AlternativeOutputFormats -}}
|
2022-04-07 23:52:00 +00:00
|
|
|
{{ printf `<link rel='%s' type='%s' href='%s' title='%s' />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
2022-03-29 22:52:36 +00:00
|
|
|
{{ end -}}
|
|
|
|
<link rel='stylesheet' href='https://stackpath.bootstrapcdn.com/bootstrap/4.5.1/css/bootstrap.min.css' crossorigin='anonymous'>
|
2022-04-07 15:52:18 +00:00
|
|
|
{{ block "head" . }}{{ end }}
|
2022-03-30 15:06:21 +00:00
|
|
|
{{ if .Param "chroma" }}
|
2022-06-07 13:54:07 +00:00
|
|
|
{{ with resources.Get "chroma.scss" | toCSS | minify | fingerprint | resources.PostProcess }}
|
2022-04-07 23:52:00 +00:00
|
|
|
<link href='{{ .RelPermalink }}' integrity="{{ .Data.Integrity }}" rel='stylesheet'>
|
2022-04-07 15:52:18 +00:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
2022-06-07 13:54:07 +00:00
|
|
|
{{ with resources.Get "main.scss" | toCSS | minify | fingerprint | resources.PostProcess }}
|
2022-04-07 23:52:00 +00:00
|
|
|
<link href='{{ .RelPermalink }}' integrity="{{ .Data.Integrity }}" rel='stylesheet'>
|
2022-03-30 15:06:21 +00:00
|
|
|
{{ end }}
|
2023-01-03 18:13:59 +00:00
|
|
|
<script defer data-domain="io.sivert.pw" src="https://anal.42069.no/js/script.js"></script>
|
2022-03-29 22:52:36 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
2022-04-07 15:52:18 +00:00
|
|
|
{{ partial "nav.html" . }}
|
2022-03-29 22:52:36 +00:00
|
|
|
</header>
|
2022-04-07 23:52:00 +00:00
|
|
|
<div id='content'>
|
2022-03-30 15:06:21 +00:00
|
|
|
<main>
|
|
|
|
{{ if .Param "toc" }}
|
|
|
|
<div class='row'>
|
|
|
|
<div class='col-md-2'>
|
|
|
|
{{ partial "toc.html" . }}
|
|
|
|
</div>
|
|
|
|
<div class='col-md-10'>
|
|
|
|
{{ block "main" . }}{{ end }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ else }}
|
|
|
|
{{ block "main" . }}{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</main>
|
2022-03-29 22:52:36 +00:00
|
|
|
</div>
|
|
|
|
<footer>
|
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
{{ block "bottom" . }}{{ end }}
|
2023-01-03 18:13:59 +00:00
|
|
|
</html>
|