aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/themes/hugo-xmag/layouts/partials/prev_next.html
blob: b2ec68561c3cb0a34db482da22b63f44627f9f6b (plain) (blame)
1
2
3
4
5
6
{{ if .Section }}
<nav class="post-nav">
  <span class="nav-prev">{{ with .NextInSection }}<a href="{{ .RelPermalink }}">&larr; {{ .Title }}</a>{{ end }}</span>
  <span class="nav-next">{{ with .PrevInSection }}<a href="{{ .RelPermalink }}">{{ .Title }} &rarr;</a>{{ end }}</span>
</nav>
{{ end }}