blob: 167aabfe416a4a630436b2f056e4eaccec18e373 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<!DOCTYPE html>
<html lang="en">
{{ partial "header/meta" . }}
<link rel='stylesheet' type='text/css' href='/style.css?v=4.0'>
{{ $section_class := "mms"}}
{{ if in .Page.Params.categories "star-trek" }}
{{ $section_class = "star-trek" }}
{{ else if in .Page.Params.category "site-info" }}
{{ $section_class = "site-info" }}
{{ else if in .Page.Params.categories "bsd" }}
{{ $section_class = "bsd" }}
{{ else if in .Page.Params.categories "blog" }}
{{ $section_class = "blog" }}
{{ else if in .Page.Params.categories "article" }}
{{ $section_class = "article" }}
{{ else if in .Page.Params.categories "emacs" }}
{{ $section_class = "emacs" }}
{{ else if in .Page.Params.categories "brainrot" }}
{{ $section_class = "brain-rot" }}
{{ end }}
<body class="{{ $section_class }}">
{{ partial "header/header" . }}
<main class="right-column">
{{ block "main" . }}
{{ end }}
</main>
{{ partial "footer/footer" . }}
</body>
</html>
|