www.byjp.me/layouts/partials/pagination-single.html
2024-04-09 11:39:14 +01:00

30 lines
No EOL
1.3 KiB
HTML

{{ if and (not $.Site.Params.DisableReadOtherPosts) (or .NextInSection .PrevInSection) }}
<div class="pagination">
{{ if .Site.Params.ReadOtherPosts }}
<div class="pagination__title">
<span class="pagination__title-h">{{ .Site.Params.ReadOtherPosts }}</span>
<hr />
</div>
{{ end }}
<div class="pagination__buttons">
{{ if .NextInSection }}
<span class="button previous">
<a href="{{ .NextInSection.RelPermalink }}">
<span class="button__icon"></span>
<span class="button__text">{{ .NextInSection.Title | default (.NextInSection.Date.Format .Site.Params.dateform) }}</span>
</a>
</span>
{{ end }}
{{ if and .NextInSection .PrevInSection }}&nbsp;{{ end }}
{{ if .PrevInSection }}
<span class="button next">
<a href="{{ .PrevInSection.RelPermalink }}">
<span class="button__text">{{ .PrevInSection.Title | default (.PrevInSection.Date.Format .Site.Params.dateform)}}</span>
<span class="button__icon"></span>
</a>
</span>
{{ end }}
</div>
</div>
{{ end }}