blob: f2a333ebefb711a894307068c5e1b704f03a146e (
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 class="content">
{{- .Content -}}
</section>
</article>
{{ end }}
|