2019-11-04 13:09:44 +00:00
|
|
|
<div class="pagination-single">
|
|
|
|
{{ if .PrevPage }}
|
|
|
|
<a href="{{ .PrevPage.Permalink }}" class="pagination-single__left">
|
|
|
|
{{ partial "svgs/arrow/keyboard-arrow-left.svg" (dict "width" 25 "height" 25) }}
|
2019-11-17 16:44:04 +00:00
|
|
|
<span class="pagination-single__left-title p1">{{ .PrevPage.Title }}</span>
|
2019-11-04 13:09:44 +00:00
|
|
|
</a>
|
|
|
|
{{ end }}
|
|
|
|
<div class="grow"></div>
|
|
|
|
{{ if .NextPage }}
|
|
|
|
<a href="{{ .NextPage.Permalink }}" class="pagination-single__right">
|
2019-11-17 16:44:04 +00:00
|
|
|
<span class="pagination-single__right-title p1">{{ .NextPage.Title }}</span>
|
2019-11-04 13:09:44 +00:00
|
|
|
{{ partial "svgs/arrow/keyboard-arrow-right.svg" (dict "width" 25 "height" 25) }}
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|