hugo-theme-noteworthy/layouts/_default/baseof.html
2020-02-02 11:13:02 -06:00

14 lines
455 B
HTML

<!DOCTYPE html>
<!-- Default base template. Other templates define the "main" portion in this template -->
<html lang="{{ $.Site.LanguageCode | default "en" }}">
{{ partial "head.html" . }}
<body>
{{ partial "nav.html" . }}
<div id="content" class="content-container">
{{ block "main" . }}
{{ end }}
{{ partial "math.html" . }}
</div>
{{ partial "footer-mobile.html" . }}
</body>
</html>