hugo-battheme/layouts/_default/baseof.html

11 lines
293 B
HTML
Raw Normal View History

2022-04-08 22:27:21 +00:00
<!DOCTYPE html>
2022-04-10 09:02:28 +00:00
<html lang="{{ .Lang }}">
2022-04-13 17:04:38 +00:00
{{- partial "head.html" . -}}
<body class="colorswitch">
{{- partial "header.html" . -}}
<div id="content">{{- block "main" . }}{{- end }}</div>
{{- partial "footer.html" . -}}
<script src="/js/main.js"></script>
</body>
2022-04-08 22:27:21 +00:00
</html>