hugo-theme-anubis2/layouts/partials/pagination.html
2020-01-12 09:51:51 +03:00

22 lines
982 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{{ if or ( .Paginator.HasPrev ) ( .Paginator.HasNext ) }}
<div class="pagination">
<div class="left">
{{ if .Paginator.HasPrev }}
{{ if eq .Paginator.PageNumber 2 }}
<a class="pagination-item" href="{{ .Site.BaseURL }}{{ .Site.LanguagePrefix }}">К новым постам</a>
{{ else }}
<a class="pagination-item" href="{{ .Paginator.Prev.URL }}">К новым постам</a>
{{ end }}
{{ else }}
<span class="pagination-item disabled">К новым постам</span>
{{ end }}
</div>
<div class="right">
{{ if .Paginator.HasNext }}
<a class="pagination-item" href="{{ .Paginator.Next.URL }}">К старым постам</a>
{{ else }}
<span class="pagination-item disabled">К старым постам</span>
{{ end }}
</div>
</div>
{{ end }}