diff options
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r-- | layouts/_default/baseof.html | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html deleted file mode 100644 index e348fd5..0000000 --- a/layouts/_default/baseof.html +++ /dev/null @@ -1,30 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> - {{ partial "header/meta" . }} - - {{ $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> |