diff options
Diffstat (limited to 'layouts/_default/list.html')
-rw-r--r-- | layouts/_default/list.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html index e69de29..5d1370f 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html | |||
@@ -0,0 +1,12 @@ | |||
1 | {{ define "main" }} | ||
2 | <article> | ||
3 | <section>{{- .Content -}}</section> | ||
4 | <section> | ||
5 | {{ range .Paginator.Pages }} | ||
6 | <div> | ||
7 | {{ .Render "summary" }} | ||
8 | </div> | ||
9 | {{ end }} | ||
10 | </section> | ||
11 | </article> | ||
12 | {{ end }} | ||