aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/partials/post_pager.html
blob: 6fe00aa15db6492ea829e5603b70d25ff8c3fb1e (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-white link bg-animate hover-bg-light-gray hover-near-black pa2 ba ma2">
        « {{ .Title }}</a>
{{ end }}
{{ with .PrevInSection }}
    <a href="{{ .RelPermalink }}" rel="prev" class="near-white link bg-animate hover-bg-light-gray hover-near-black pa2 ba ma2">
        {{ .Title }} »</a>
{{ end }}
</nav>