mirror of
https://github.com/danbee/danbarber.me.hugo.git
synced 2025-03-04 08:59:18 +00:00
24 lines
669 B
HTML
24 lines
669 B
HTML
{{ define "main" }}
|
|
<section class="photos">
|
|
<div class="photos__container">
|
|
{{ range (.Paginator 24).Pages }}
|
|
<article class="photos__thumb-container">
|
|
{{ partial "photo_thumb.html" . }}
|
|
</article>
|
|
{{ end }}
|
|
</div>
|
|
</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 }}
|