joinpeertube/themes/hugo-bootstrap-premium/layouts/partials/modules/page/navigation.html

22 lines
638 B
HTML
Raw Normal View History

2018-02-28 15:33:36 +00:00
{{ if .IsPage }}
{{ if or ( .NextInSection ) ( .PrevInSection ) }}
<nav><ul class="pager">
{{ if .PrevInSection }}
<li class="previous">
<a href="{{ .PrevInSection.Permalink }}" title="{{ .PrevInSection.Title }}">
<span aria-hidden="true">&larr;</span>{{ i18n "previous" }}
</a>
</li>
{{end}}
{{ if .NextInSection }}
<li class="next">
<a href="{{ .NextInSection.Permalink }}" title="{{ .NextInSection.Title }}">
{{ i18n "next" }} <span aria-hidden="true">&rarr;</span>
</a>
</li>
{{end}}
</ul> </nav>
{{ end }}
{{ end }}