Terminal-Hugo-Theme/layouts/partials/posts_pagination.html

24 lines
742 B
HTML
Raw Normal View History

2022-06-21 15:50:51 +02:00
{{ if or .NextInSection .PrevInSection }}
<div class="pagination">
2024-08-20 12:11:39 +02:00
<div class="pagination__title">
<span class="pagination__title-h">{{ $.Site.Params.ReadOtherPosts }}</span>
<hr />
</div>
<div class="pagination__buttons">
{{ if .NextInSection }}
<a href="{{ .NextInSection.Permalink }}" class="button inline prev">
&lt; [<span class="button__text">{{ .NextInSection.Title }}</span>]
2024-08-20 12:11:39 +02:00
</a>
{{ end }}
{{ if and .NextInSection .PrevInSection }}
::
{{ end }}
{{ if .PrevInSection }}
<a href="{{ .PrevInSection.Permalink }}" class="button inline next">
[<span class="button__text">{{ .PrevInSection.Title }}</span>] &gt;
2024-08-20 12:11:39 +02:00
</a>
{{ end }}
</div>
2022-06-21 15:50:51 +02:00
</div>
2024-08-20 12:11:39 +02:00
{{ end }}