website-theme/layouts/_default/single.html

11 lines
224 B
HTML
Raw Normal View History

2018-09-23 11:11:35 +00:00
{{ define "main"}}
<div>
<h1>{{ .Title }}</h1>
<p class="date">{{ .Date.Format "January 2, 2006" }}</p>
<div class="markdown-body">
{{ .Content }}
</div>
</div>
{{ end }}