hugo-theme-paradox/layouts/partials/nav-section.html

10 lines
399 B
HTML
Raw Normal View History

2022-10-16 22:15:34 +00:00
<nav class="section-nav">
<div class="container">
{{ with .PrevInSection }}
<a class="previous" href="{{.Permalink}}"><span class="arrow"></span><span class="text">Previous page:<br/>{{.Title}}</span></a>
{{ end }}
{{ with .NextInSection }}
<a class="next" href="{{.Permalink}}"><span class="text">Next page:<br/>{{.Title}}</span><span class="arrow"></span></a>
{{ end }}
</div>
</nav>