aboutsummaryrefslogtreecommitdiff
path: root/www/layouts/_default/list.html
blob: ddc3942c765f036a1932fd379bf7186eae3a6a7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ define "head"}}
  {{ partial "css.html" "partials/preview/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 }}