aboutsummaryrefslogtreecommitdiff
path: root/layouts/post/single.html
blob: 432b9df31fed43bb4180e550edbffe7dd4a41fa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ define "main" }}
<article>
    <section>
        <h1>{{ .Title }}</h1>
        <h6>{{ .Date | time.Format ":date_full" }}</h6>
    </section>
    <section>
        {{- .Content -}}
    </section>
</article>
{{ end }}