website/layouts/_default/baseof.html

18 lines
458 B
HTML
Raw Normal View History

2025-06-21 02:30:42 -07:00
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
{{- partial "head.html" . -}}
{{- if site.Params.darkmode -}}
<body class="latex-dark">
{{- else if site.Params.lightmode -}}
<body>
{{- else -}}
<body class="latex-dark-auto">
{{- end -}}
{{- partial "header.html" . -}}
<div id="content">
{{- block "main" . }}{{- end }}
</div>
{{- partial "footer.html" . -}}
</body>
</html>