hugo-theme-more-contentful/layouts/_default/baseof.html
Gabriel Arazas e81b882549 Uncache all of the partials used
On the other hand, this solves the weird title behavior as well as the
inability to update themes.
2020-11-04 01:07:30 +08:00

11 lines
289 B
HTML

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