hugo-theme-more-contentful/layouts/_default/baseof.html
Gabriel Arazas 023c34c22a Update the site layout
Made the resulting HTML cleaner and added a color to the border for more
personality.
2020-12-23 18:20:16 +08:00

13 lines
307 B
HTML

<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode | default "en" }}">
{{- partial "head.html" . -}}
<body>
{{- partial "components/theme-button.html" . }}
{{- partial "header.html" . -}}
<hr>
{{- block "main" . }}{{- end }}
<hr>
{{- partial "footer.html" . -}}
</body>
</html>