blob: 1d4ec5675b31806a273ead98c7b41b24e053e69b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{{ define "head"}}
{{ partial "css.html" "res/css/article.css" }}
{{ end }}
{{ define "content" }}
{{ partial "nav.html" . }}
<h1>{{ .Title }}</h1>
<hr/>
{{ partial "preview/posts.html" (dict
"h" "h3"
"pages" .RegularPages
)
}}
{{ end }}
|