hugo-theme-termlite/layouts/_default/baseof.html
Eryn Wells 4c689f0f5c Reduce the depth of the DOM and simplify the CSS a bit
Remove the main intermediate container. It wasn't acutally serving a purpose.
Remove some of the BEM-style classes that also weren't really doing anything.
2024-10-13 23:13:16 -07:00

16 lines
454 B
HTML

<!DOCTYPE html>
<html lang="{{ or site.Language.LanguageCode }}" dir="{{ or site.Language.LanguageDirection `ltr` }}">
<head>
{{- partial "base/head.html" . -}}
{{- block "head_css" . }}{{ end -}}
</head>
<body>
<header class="site-header">
{{ partial "site/header.html" . }}
</header>
{{ block "main" . }}{{ end }}
<footer class="site-footer">
{{ partial "site/footer.html" . }}
</footer>
</body>
</html>