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

{{ define "content" }}
  {{ partial "nav.html" . }}
  <h1>Posts</h1>
  {{ partial "preview/posts.html" (dict
    "h" "h3"
    "pages" (.RegularPages.ByDate.Reverse.Limit 3))
  }}
{{ end }}