2022-06-21 13:50:51 +00:00
|
|
|
{{ if or .NextInSection .PrevInSection }}
|
|
|
|
<div class="pagination">
|
2024-08-20 10:11:39 +00: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">
|
|
|
|
{{ .NextInSection.Title }}
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
|
|
|
{{ if and .NextInSection .PrevInSection }}
|
|
|
|
::
|
|
|
|
{{ end }}
|
|
|
|
{{ if .PrevInSection }}
|
|
|
|
<a href="{{ .PrevInSection.Permalink }}" class="button inline next">
|
|
|
|
{{ .PrevInSection.Title }}
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2022-06-21 13:50:51 +00:00
|
|
|
</div>
|
2024-08-20 10:11:39 +00:00
|
|
|
{{ end }}
|