aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/list.html
diff options
context:
space:
mode:
authorZach Berwaldt <zberwaldt@tutamail.com>2023-05-13 22:39:58 -0400
committerZach Berwaldt <zberwaldt@tutamail.com>2023-05-13 22:39:58 -0400
commitb34e09f8fe1011963934dbf40dc92f0b258592ca (patch)
treec99974d127163b266f107d5c9c5e1f126a233087 /layouts/_default/list.html
parent24e058c3eb3a278023c4ecee7efa9a73774ded0b (diff)
more layout work
Diffstat (limited to 'layouts/_default/list.html')
-rw-r--r--layouts/_default/list.html12
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 }}