blob: 355fa36bcf043d0e8f309e265d761e872d8601ae (
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
32
33
|
<!DOCTYPE html>
<html lang="en">
<head>
{{ partial "header/meta" . }}
<link rel='stylesheet' type='text/css' href='/style.css?v=4.0'>
</head>
{{ $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>
|