light-hugo/layouts/_default/single.html
2016-11-02 23:10:49 -04:00

10 lines
261 B
HTML

{{ partial "header.html" . }}
<div class="postBody">
<div class="post">
{{ if .Title }}<h1>{{ .Title }}</h1>{{ end }}
<span class="post-meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
{{ .Content }}
</div>
</div>
{{ partial "footer.html" . }}