Files
hugo-cwpearson/themes/academic/layouts/partials/section_pager.html
Carl Pearson c86ae95ea6 add theme
2017-07-18 17:40:37 -04:00

14 lines
401 B
HTML

<nav>
<ul class="pager">
{{if .PrevInSection}}
<li class="previous"><a href="{{.PrevInSection.Permalink}}"><span
aria-hidden="true">&larr;</span> {{.PrevInSection.Title}}</a></li>
{{end}}
{{if .NextInSection}}
<li class="next"><a href="{{.NextInSection.Permalink}}">{{.NextInSection.Title}} <span
aria-hidden="true">&rarr;</span></a></li>
{{end}}
</ul>
</nav>