mirror of
https://github.com/hyzendust/hyzendust.github.io.git
synced 2026-04-15 21:28:32 +02:00
16 lines
419 B
HTML
16 lines
419 B
HTML
{{ if or .NextInSection .PrevInSection }}
|
|
<nav class="page-nav">
|
|
{{ with .NextInSection }}
|
|
<a class="page-nav__previous-link" href="{{ .RelPermalink }}">
|
|
{{ i18n "previousPage" }}{{ .Title }}
|
|
</a>
|
|
{{ end }}
|
|
|
|
{{ with .PrevInSection }}
|
|
<a class="page-nav__next-link" href="{{ .RelPermalink }}">
|
|
{{ i18n "nextPage" }}{{ .Title }}
|
|
</a>
|
|
{{ end }}
|
|
</nav>
|
|
{{ end }}
|