List and page_summary templates for twitter section

This commit is contained in:
Eryn Wells 2025-08-28 11:19:48 -06:00
parent 90c2ba8787
commit f3da1087e3
2 changed files with 32 additions and 0 deletions

14
layouts/tweets/list.html Normal file
View file

@ -0,0 +1,14 @@
{{ define "main" }}
<main class="main--list">
<header class="page-header">
{{ partial "page_header.html" (dict "page" .) }}
</header>
{{ $paginator := .Paginate .Pages.ByPublishDate.Reverse 100 }}
{{ range $paginator.Pages }}
{{ .Render "page_summary" }}
{{ end }}
{{ partial "pagination.html" . }}
</main>
{{ end }}