diff options
author | Zach Berwaldt <zberwaldt@tutamail.com> | 2023-05-13 22:39:58 -0400 |
---|---|---|
committer | Zach Berwaldt <zberwaldt@tutamail.com> | 2023-05-13 22:39:58 -0400 |
commit | b34e09f8fe1011963934dbf40dc92f0b258592ca (patch) | |
tree | c99974d127163b266f107d5c9c5e1f126a233087 /layouts/_default/list.html | |
parent | 24e058c3eb3a278023c4ecee7efa9a73774ded0b (diff) |
more layout work
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 }} | ||