about summary refs log tree commit diff
path: root/themes/researcher/layouts/_default/single.html
blob: 58835f3d0c2655f21560fb84f1978e1e3b54f1b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ define "main" }}
<div class="container">
{{ if eq .Type "blog" }}
        <span class="date">{{ .PublishDate.Format "January 2, 2006" }} - </span>
	<span class="words">{{ .WordCount }} words - </span>
	<span class="reading">{{ .ReadingTime }} minute read.</span>
{{ end }}
{{ .Content }}
{{ if eq .Type "blog" }}
	<span class="lastmod">Last updated {{ .Lastmod.Format "Jan 2, 2006" }}</span>
{{ end }}
</div>
{{ end }}