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

13 lines
331 B
HTML

{{ partial "header.html" . }}
<div class="postBody">
<div class="post">
<h1>{{ .Title }}</h1>
<span class="post-meta">{{ .Date.Format "Mon, Jan 2, 2006" }} - Read in {{ .ReadingTime }} Min</span>
<div class="content">
{{ .TableOfContents }}
{{ .Content }}
</div>
</div>
</div>
{{ partial "footer.html" . }}