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