Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/calintat/minimal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/paginator.html')
-rw-r--r--layouts/partials/paginator.html18
1 files changed, 10 insertions, 8 deletions
diff --git a/layouts/partials/paginator.html b/layouts/partials/paginator.html
index d6128f4..24444d2 100644
--- a/layouts/partials/paginator.html
+++ b/layouts/partials/paginator.html
@@ -3,15 +3,17 @@
<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>
+ <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 }} \ No newline at end of file
+{{ end }}