blob: 5bb0b5e497612522f161f5cfdcb8094b2eb4274e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{{ define "head"}}
{{ partial "css.html" "res/css/article.css" }}
{{ end }}
{{ define "content" }}
{{ partial "nav.html" . }}
<h1>{{ .Title }}</h1>
{{ $pages := .RegularPages }}
{{ if .Param "recursive" }}
{{ $pages = .RegularPagesRecursive }}
{{ end }}
{{ partial "preview/posts.html" (dict
"h" "h3"
"pages" $pages
)
}}
{{ end }}
|