1
0
Fork 0
bascht.com/layouts/partials/pager.html

19 lines
453 B
HTML

<div class="main wrapper clearfix">
<div class="pager">
<span class="prev">
{{if .PrevInSection}}
<a href="{{.PrevInSection.Permalink}}">{{.PrevInSection.Title}}</a>
{{end}}
</span>
<span class="middle"> &middot; </span>
<span class="next">
{{if .NextInSection}}
<a class="next" href="{{.NextInSection.Permalink}}">{{.NextInSection.Title}}</a>
</span>
{{end}}
</div>
</div>