Files
huell/layouts/_default/baseof.html
Nick Karaolidis a75ad7aa95 Draw the rest of the fucking owl
Signed-off-by: Nick Karaolidis <Nick.Karaolidis@sas.com>
2025-08-05 21:40:56 +02:00

56 lines
1.6 KiB
HTML

<!doctype html>
<html lang="{{ .Site.LanguageCode }}">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>
{{ .Site.Title }}{{ $url := urls.Parse .Page.Permalink }}{{ $url.Path }}
</title>
{{ with .Site.Params.description }}
<meta name="description" content="{{ . }}" />
{{ end }}
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="robots" content="all,follow" />
<meta name="googlebot" content="index,follow,snippet,archive" />
<link rel="stylesheet" href="{{ "css/animate.min.css" | absURL }}" />
<link rel="stylesheet" href="{{ "css/terminal.min.css" | absURL }}" />
<link rel="stylesheet" href="{{ "css/huell.css" | absURL }}" />
<script src="{{ "js/masonry.min.js" | absURL }}" async></script>
{{ `
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
` | safeHTML
}}
{{- partial "favicon.html" . -}}
{{ with .OutputFormats.Get "RSS" }}
{{ printf `
<link href="%s" rel="%s" type="%s" title="%s" />` .Permalink .Rel .MediaType.Type $.Site.Title | safeHTML
}}
{{ end }}
{{- partial "opengraph.html" . -}}
{{- partial "twitter.html" . -}}
</head>
<body class="terminal">
{{- partial "header.html" . -}}
<div class="container {{ .Site.Params.animateStyle }}">
{{ block "main" . }}
{{ end }}
{{ partial "footer.html" . }}
</div>
</body>
</html>