12 lines
351 B
HTML
12 lines
351 B
HTML
<nav class="pagination" role="navigation">
|
|
{{ if or .HasPrev .HasNext }}
|
|
<hr />
|
|
{{ end }}
|
|
{{if .HasPrev}}
|
|
<a class="newer-posts" href="{{ .Prev.URL }}"><span aria-hidden="true">«</span> Newer Posts</a>
|
|
{{end}}
|
|
{{if .HasNext}}
|
|
<a class="older-posts" href="{{ .Next.URL }}">Older Posts <span aria-hidden="true">»</span></a>
|
|
{{end}}
|
|
</nav>
|