aboutsummaryrefslogtreecommitdiff
path: root/layouts/post/single.html
blob: 306df489ec0a0a3417fd9677051af0dc648bb11a (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 }}