Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pagination.html « list « partials « layouts - github.com/kongdivin/hugo-theme-okayish-blog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e56af1e3fb5cfef10a9fc6e578da33d820aace26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<footer class="p-article-pagination">
    {{ if .Paginator.HasPrev }}
    <a class="p-article-pagination__link--previous p-article-pagination__link--no-title" href="{{ .Paginator.Prev.URL }}">
        <span class="p-article-pagination__label">{{ i18n "previous" | default "Previous" }}</span>
    </a>
    {{end}}

    {{ if .Paginator.HasNext }}
    <a class="p-article-pagination__link--next p-article-pagination__link--no-title" href="{{ .Paginator.Next.URL }}">
        <span class="p-article-pagination__label">{{ i18n "next" | default "Next" }}</span>
    </a>
    {{end}}
</footer>