website-theme/layouts/_default/single.html

10 lines
203 B
HTML
Raw Normal View History

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