Bootstrap all the things

This commit is contained in:
Wilfried OLLIVIER 2018-03-19 00:02:48 +01:00
commit f4b4108ffc
19 changed files with 487 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{{ if or .Paginator.HasPrev .Paginator.HasNext }}
<div class="pages">
{{ if .Paginator.HasPrev }}
<a class="icon pages-icon" href="{{ .Paginator.Prev.URL }}" rel="prev">
<i class="fa fa-arrow-left"></i>
</a>
{{ end }} {{ if .Paginator.HasNext }}
<a class="icon pages-icon" href="{{ .Paginator.Next.URL }}" rel="next">
<i class="fa fa-arrow-right"></i>
</a>
{{ end }}
</div>
{{ end }}