swh:1:snp:9f90daa2f0cb7e83b3230a52ab396e3b6448c798
Tip revision: a190f270da39746f098672680944a4e33da8044b authored by LuisGC on 18 February 2018, 19:37:23 UTC
Merge branch 'master' of https://github.com/LuisGC/blog into hugo
Merge branch 'master' of https://github.com/LuisGC/blog into hugo
Tip revision: a190f27
pagination.html
<!-- Pagination -->
<ul class="actions pagination">
{{ if .Paginator.HasPrev }}
<li><a href="{{ .Paginator.Prev.URL }}"
class="button big previous">Previous Page</a></li>
{{ else }}
<li><a href="#" class="disabled button big previous">Previous Page</a></li>
{{ end }}
{{ if .Paginator.HasNext }}
<li><a href="{{ .Paginator.Next.URL }}"
class="button big next">Next Page</a></li>
{{ else }}
<li><a href="#" class="disabled button big next">Next Page</a></li>
{{ end }}
</ul>