website-theme/layouts/_default/list.html

9 lines
202 B
HTML
Raw Normal View History

{{ define "main"}}
<h1 class='title'>{{ .Title }}</h1>
{{ partial "header.html" . }}
2020-12-22 09:36:03 -05:00
<!-- content -->
<div id="contentBody">
{{ .Content }}
</div>
{{ partial "footer.html" . }}
2020-12-22 09:36:03 -05:00
{{ end }}