website-theme/layouts/_default/single.html

11 lines
240 B
HTML
Raw Normal View History

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