summaryrefslogtreecommitdiff
path: root/themes/terminal/layouts/partials/posts_pagination.html
blob: 04951d5b8e6530f5c4973017b22987fb72a4bf90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{{ if or .NextInSection .PrevInSection }}
<div class="pagination">
    <div class="pagination__title">
        <span class="pagination__title-h">{{ $.Site.Params.ReadOtherPosts }}</span>
        <hr />
    </div>
    <div class="pagination__buttons">
        {{ if .NextInSection }}
        <span class="button previous">
            <a href="{{ .NextInSection.Permalink }}">
                <span class="button__icon"></span>
                <span class="button__text">{{ .NextInSection.Title }}</span>
            </a>
        </span>
        {{ end }}
        {{ if .PrevInSection }}
        <span class="button next">
            <a href="{{ .PrevInSection.Permalink }}">
                <span class="button__text">{{ .PrevInSection.Title }}</span>
                <span class="button__icon"></span>
            </a>
        </span>
        {{ end }}
    </div>
</div>
{{ end }}