2020-06-07 13:20:40 +02:00
|
|
|
{{ if or ( .PrevInSection ) ( .NextInSection ) }}
|
|
|
|
<div class="pagination post-pagination">
|
2020-06-07 13:25:18 +02:00
|
|
|
<div class="left pagination-item {{ if not .NextInSection }}disabled{{ end }}">
|
2020-06-07 13:20:40 +02:00
|
|
|
{{ if .NextInSection }}
|
|
|
|
<a href="{{ .NextInSection.Permalink | relLangURL }}">{{ .NextInSection.Title }}</a>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2020-06-07 13:25:18 +02:00
|
|
|
<div class="right pagination-item {{ if not .PrevInSection }}disabled{{ end }}">
|
|
|
|
{{ if .PrevInSection }}
|
|
|
|
<a href="{{ .PrevInSection.Permalink | relLangURL }}">{{ .PrevInSection.Title }}</a>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2020-06-07 13:20:40 +02:00
|
|
|
</div>
|
|
|
|
{{ end }}
|