summaryrefslogtreecommitdiff
path: root/layouts/partials/single/next-prev.html
blob: 73d48cf1cbefd43c1c950d2b4b8e045b11493e85 (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
27
28
29
30
31
32
{{- /* Navigation for Next and Previous Post */ -}}
{{- if ne .Params.excludeFromLists true }}
<nav class="post__navigation" aria-label="{{ lang.Translate "post.navigation" | default "Post navigation" }}">
    <ul class="post__navigation-list">
        {{- with .PrevInSection }}
            <li class="post__navigation-prev">
                <a href="{{ .RelPermalink }}" class="post__navigation-link" rel="prev">
                    <span class="post__navigation-label">
                        &larr; {{ lang.Translate "post.previous" | default "Previous post:" }}
                    </span>
                    <span class="post__navigation-title">
                        {{ .Title }}
                    </span>
                </a>
            </li>
        {{- end }}

        {{- with .NextInSection }}
            <li class="post__navigation-next">
                <a href="{{ .RelPermalink }}" class="post__navigation-link" rel="next">
                    <span class="post__navigation-label">
                        {{ lang.Translate "post.next" | default "Next post:" }}
                    </span>
                    <span class="post__navigation-title">
                        {{ .Title }} &rarr;
                    </span>
                </a>
            </li>
        {{- end }}
    </ul>
</nav>
{{- end }}