deliciousium/themes/coyote/layouts/_default/baseof.html

21 lines
523 B
HTML

<!DOCTYPE html>
<html>
<head>
{{- partial "head.html" . -}}
</head>
<body>
<!-- Code that all your templates share, like a header -->
{{- partial "header.html" . -}}
<div class="container container-section">
<main class="main main_section">
{{ block "main" . }}
<!-- The part of the page that begins to differ between templates -->
{{ end }}
</main>
</div>
<div class="site-footer">
{{- partialCached "footer.html" . }}
</div>
</body>
</html>