website-theme/layouts/_default/single.html

12 lines
280 B
HTML
Raw Normal View History

2018-09-23 07:11:35 -04:00
{{ define "main"}}
2019-03-23 03:18:03 -04:00
<h1>{{ .Title }}</h1>
{{ partial "header.html" . }}
<!-- date -->
<p class="date">{{ .Date.Format .Site.Params.singlePageDateFormat }}</p>
<!-- 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 }}