blob: 23a60a969a428693df732d450abb8b2aeafee94b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{{ define "main" }}
<main role="main">
<!-- Single article -->
<article itemtype="http://schema.org/Article">
<header>
<h1 itemtype="headline">{{ .Title }}</h1>
{{ if in .Type "posts" }}
<time>Published on {{ .Date.Format "Monday Jan 2, 2006" }}</time>
{{ end }}
</header>
<div>
{{.Content}}
</div>
</article>
</main>
{{ end }}
|