mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-10 22:45:45 +01:00
Alan Orth
400357930a
The default list template was used for paginating posts on the homepage as well as the taxonomies and terms pages, but actually those two cases are different. This introduces a taxonomy template that paginates based on the current context (ie, when displaying posts for a certain tag).
17 lines
1.0 KiB
HTML
17 lines
1.0 KiB
HTML
<nav class="blog-pagination">
|
|
{{ if and (.Paginator.HasPrev) (.Paginator.HasNext) }}
|
|
<a class="btn btn-outline-primary" href="{{ .Paginator.Prev.URL }}" rel="prev" role="button">{{ i18n "paginatorPrevious" }}</a>
|
|
<a class="btn btn-outline-primary" href="{{ .Paginator.Next.URL }}" rel="next" role="button">{{ i18n "paginatorNext" }}</a>
|
|
{{ end }}
|
|
{{ if and (.Paginator.HasPrev) (not .Paginator.HasNext) }}
|
|
<a class="btn btn-outline-primary" href="{{ .Paginator.Prev.URL }}" rel="prev" role="button">{{ i18n "paginatorPrevious" }}</a>
|
|
<a class="btn btn-outline-primary disabled" href="#" role="button" aria-disabled="true">{{ i18n "paginatorNext" }}</a>
|
|
{{ end }}
|
|
{{ if and (not .Paginator.HasPrev) (.Paginator.HasNext) }}
|
|
<a class="btn btn-outline-primary disabled" href="#" role="button" aria-disabled="true">{{ i18n "paginatorPrevious" }}</a>
|
|
<a class="btn btn-outline-primary" href="{{ .Paginator.Next.URL }}" rel="next" role="button">{{ i18n "paginatorNext" }}</a>
|
|
{{ end }}
|
|
</nav>
|
|
|
|
{{- /* vim: set ts=2 sw=2 et: */}}
|