blob: 2078f0248b21b9c1c0c56259fc5022ffc18dbecb (
plain)
1
2
3
4
5
6
7
8
9
10
|
<nav class="flex items-center justify-center pa4 f5">
{{ with .NextInSection }}
<a href="{{ .RelPermalink }}" rel="prev" class="near-black link bg-animate hover-bg-light-gray pa2 ba ma2">
« {{ .Title }}</a>
{{ end }}
{{ with .PrevInSection }}
<a href="{{ .RelPermalink }}" rel="prev" class="near-black link bg-animate hover-bg-light-gray pa2 ba ma2">
{{ .Title }} »</a>
{{ end }}
</nav>
|