hugo-theme-noteworthy/layouts/_default/baseof.html

14 lines
455 B
HTML
Raw Normal View History

2020-02-02 17:13:02 +00:00
<!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>