website-theme/layouts/_default/single.html

11 lines
240 B
HTML
Raw Normal View History

2018-09-23 07:11:35 -04:00
{{ define "main"}}
<div>
<h1>{{ .Title }}</h1>
2018-09-24 11:27:18 -04:00
<p class="date">{{ .Date.Format .Site.Params.singlePageDateFormat }}</p>
2018-09-23 07:11:35 -04:00
<div class="markdown-body">
{{ .Content }}
</div>
</div>
{{ end }}