blob: b80e39a36fc508b9843bc111e9c0a7d0edd7931b (
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
|
{{- /* Navigation for Next and Previous Post */ -}}
<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">
← {{ 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 }} →
</span>
</a>
</li>
{{- end }}
</ul>
</nav>
|