posts_pagination.html (771B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
{{ if or .NextInSection .PrevInSection }}
<div class="pagination">
<div class="title">
<span>{{ $.Site.Params.ReadOtherPosts }}</span>
<hr />
</div>
<div class="buttons">
{{ if .NextInSection }}
<a class="button previous" href="{{ .NextInSection.Permalink }}">
<span class="button_icon">←</span>
<span class="button_text">{{ .NextInSection.Title }}</span>
</a>
{{ end }}
{{ if .PrevInSection }}
<a class="button next" href="{{ .PrevInSection.Permalink }}">
<span class="button_text">{{ .PrevInSection.Title }}</span>
<span class="button_icon">→</span>
</a>
{{ end }}
</div>
</div>
{{ end }}
|