website-theme/layouts/_default/single.html

12 lines
285 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 -->
<div class="markdown-body">
{{ .Content }}
</div>
{{ partial "footer.html" . }}
2018-09-23 07:11:35 -04:00
{{ end }}