aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/_default/single.html
blob: 9343abdddfbf60c1cfc62521c1e1b782d3ad6161 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ define "main" }}
<article class="ph2">
    <header class="bg-green pa5">
        <h1 class="f1 black-90">
            {{ .Title }}</h1>

        <div class="gray tracked">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
    </header>
    <div class="f5 lh-copy pv4 ph2 black-80">
        {{ .Content }}
    </div>
</article>
{{ end }}