2019-11-04 13:09:44 +00:00
|
|
|
<div class="pagination-single">
|
|
|
|
{{ if .PrevPage }}
|
2019-11-19 17:54:47 +00:00
|
|
|
<hr class="hr-vertical-lines" />
|
2019-11-04 13:09:44 +00:00
|
|
|
<a href="{{ .PrevPage.Permalink }}" class="pagination-single__left">
|
2019-11-19 17:54:47 +00:00
|
|
|
{{ partial "svgs/arrow/arrow-back.svg" (dict "width" 30 "height" 30) }}
|
2019-11-19 09:25:36 +00:00
|
|
|
<div class="pagination-single__left-title p1">{{ .PrevPage.Title }}</div>
|
2019-11-04 13:09:44 +00:00
|
|
|
</a>
|
2019-11-19 17:54:47 +00:00
|
|
|
<hr class="hr-vertical-lines"/>
|
2019-11-04 13:09:44 +00:00
|
|
|
{{ end }}
|
|
|
|
{{ if .NextPage }}
|
2019-11-19 09:25:36 +00:00
|
|
|
<a href="{{ .NextPage.Permalink }}" class="pagination-single__right">
|
|
|
|
<div class="pagination-single__right-title p1">{{ .NextPage.Title }}</div>
|
2019-11-19 17:54:47 +00:00
|
|
|
{{ partial "svgs/arrow/arrow-forward.svg" (dict "width" 30 "height" 30) }}
|
2019-11-04 13:09:44 +00:00
|
|
|
</a>
|
2019-11-19 17:54:47 +00:00
|
|
|
<hr class="hr-vertical-lines" />
|
2019-11-04 13:09:44 +00:00
|
|
|
{{ end }}
|
|
|
|
</div>
|