aboutsummaryrefslogtreecommitdiff
path: root/www/layouts/list.html
blob: be33d101e609fbd6618477ce37eec5f6c432f05a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ define "head"}}
  {{ partial "css.html" "res/css/article.css" }}
{{ end }}

{{ define "content" }}
  {{ partial "nav.html" . }}
  <h1>{{ .Title }}</h1>
  {{ partial "preview/posts.html" (dict
      "h" "h3"
      "pages" .RegularPages
    )
  }}
{{ end }}