pagination: buttons: new arrow icons

This commit is contained in:
Aditya Telange 2020-07-26 19:08:27 +05:30
parent b287b1cd24
commit 880ce9bf68
2 changed files with 4 additions and 4 deletions

View File

@ -41,10 +41,10 @@
<footer class="page-footer">
<nav class="pagination">
{{- if $paginator.HasPrev }}
<a class="prev" href="{{ $paginator.Prev.URL }}"> {{ i18n "prev_page" }}</a>
<a class="prev" href="{{ $paginator.Prev.URL }}">« {{ i18n "prev_page" }}</a>
{{- end }}
{{- if $paginator.HasNext }}
<a class="next" href="{{ $paginator.Next.URL }}">{{ i18n "next_page" }} </a>
<a class="next" href="{{ $paginator.Next.URL }}">{{ i18n "next_page" }} »</a>
{{- end }}
</nav>
</footer>

View File

@ -36,10 +36,10 @@
<footer class="page-footer">
<nav class="pagination">
{{- if $paginator.HasPrev }}
<a class="prev" href="{{ $paginator.Prev.URL }}"> {{ i18n "prev_page" }}</a>
<a class="prev" href="{{ $paginator.Prev.URL }}">« {{ i18n "prev_page" }}</a>
{{- end }}
{{- if $paginator.HasNext }}
<a class="next" href="{{ $paginator.Next.URL }}">{{ i18n "next_page" }} </a>
<a class="next" href="{{ $paginator.Next.URL }}">{{ i18n "next_page" }} »</a>
{{- end }}
</nav>
</footer>