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">
|
2025-03-10 13:47:59 +01:00
|
|
|
< [<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">
|
2025-03-10 13:47:59 +01:00
|
|
|
[<span class="button__text">{{ .PrevInSection.Title }}</span>] >
|
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 }}
|