blob: 4d6ea439c0e1350b09e9452b9b0d9d395c469917 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{{ partial "head" . }}
{{ partial "nav" . }}
<div class="mw6 center ph3 pv4">
<h1 class="f2 lh-title b mb3">{{.Title}}</h1>
<div class="flex justify-between grey-3">
<p>{{ .Date.Format "Mon, Jan 2, 2006" }}</p>
<p>Read in {{ .ReadingTime }} minutes</p>
</div>
<div class="cms mw6">
{{ .Content }}
</div>
</div>
{{ partial "footer" . }}
|