List and page_summary templates for twitter section
This commit is contained in:
parent
90c2ba8787
commit
f3da1087e3
2 changed files with 32 additions and 0 deletions
14
layouts/tweets/list.html
Normal file
14
layouts/tweets/list.html
Normal 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 }}
|
Loading…
Add table
Add a link
Reference in a new issue