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