You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
homepage/themes/persona/layouts/partials/post/single_pagination.html

9 lines
476 B
HTML

{{ if (.Prev) or (.Next) }}
<div class="paginating_area">
<ul>
{{ if .Prev }}<li><a href="{{ .Prev.RelPermalink }}" class="p_arrow" title="Previous blog post: {{ .Prev.Title }}"><i>&lsaquo;</i></a></li>{{ end }}
{{ if .Next }}<li><a href="{{ .Next.RelPermalink }}" class="p_arrow" title="Next blog post: {{ .Next.Title }}"><i>&rsaquo;</i></a></li>{{ end }}
</ul>
</div>
{{ end }}