website-theme/layouts/_default/single.html

10 lines
203 B
HTML
Raw Normal View History

2018-09-23 07:11:35 -04:00
{{ define "main"}}
<h1 class='title'>{{ .Title }}</h1>
2019-03-23 03:18:03 -04:00
{{ partial "header.html" . }}
<!-- content -->
2019-03-23 12:59:56 -04:00
<div id="contentBody">
2019-03-23 03:18:03 -04:00
{{ .Content }}
</div>
{{ partial "footer.html" . }}
2018-09-23 07:11:35 -04:00
{{ end }}