mirror of
https://github.com/danbee/danbarber.me.hugo.git
synced 2025-03-04 08:59:18 +00:00
20 lines
545 B
HTML
20 lines
545 B
HTML
{{ define "main" }}
|
|
<section class="posts">
|
|
{{ range .Paginator.Pages }}
|
|
{{ partial "blog_post_summary.html" . }}
|
|
{{ end }}
|
|
</section>
|
|
|
|
<section class="posts__pagination">
|
|
<div class="container posts__pagination-container">
|
|
{{ if .Paginator.HasNext }}
|
|
<a class="posts__next-link" href="{{.Paginator.Next.URL}}">← Older</a>
|
|
{{ end }}
|
|
|
|
{{ if .Paginator.HasPrev }}
|
|
<a class="posts__prev-link" href="{{.Paginator.Prev.URL}}">Newer →</a>
|
|
{{ end }}
|
|
</div>
|
|
</section>
|
|
{{ end }}
|