blog-public/layouts/partials/pagination.html
Denis Zheleztsov a5dd73f274 Initial public
Some content was deleted before this project
has been moved to public
2021-10-18 19:45:57 +03:00

5 lines
243 B
HTML

<div class="pagination">
{{ if .Paginator.HasPrev }}
<a class="btn previous" href="{{ .Paginator.Prev.URL }}">Newer</a> {{ end }} {{ if .Paginator.HasNext }}
<a class="btn next" href="{{ .Paginator.Next.URL }}">Older</a> {{ end }}
</div>