mirror of
https://github.com/gcushen/hugo-academic.git
synced 2025-07-26 03:00:50 +02:00
11 lines
417 B
HTML
11 lines
417 B
HTML
<nav>
|
|
<ul class="pager">
|
|
{{if .PrevInSection}}
|
|
<li class="previous"><a href="{{.PrevInSection.Permalink}}"><span aria-hidden="true">←</span> {{.PrevInSection.Title}}</a></li>
|
|
{{end}}
|
|
|
|
{{if .NextInSection}}
|
|
<li class="next"><a href="{{.NextInSection.Permalink}}">{{.NextInSection.Title}} <span aria-hidden="true">→</span></a></li>
|
|
{{end}}
|
|
</ul>
|
|
</nav>
|