You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
941 B
HTML
31 lines
941 B
HTML
{{ if and (.Paginator) (not (.Data.Terms)) }}
|
|
{{ if gt .Paginator.TotalPages 1 }}
|
|
<div class="pagination">
|
|
{{ if .Paginator.HasPrev }}
|
|
<a class="pagination-action" href="{{.Paginator.Prev.URL}}" style="opacity:1">
|
|
{{ else }}
|
|
<a class="pagination-action" style="opacity:0">
|
|
{{ end }}
|
|
<i class="material-icons pagination-action-icon">
|
|
chevron_left
|
|
</i>
|
|
</a>
|
|
|
|
<div class="pagination-indicator">
|
|
<span>{{.Paginator.PageNumber}}/{{.Paginator.TotalPages}}</span>
|
|
</div>
|
|
|
|
{{ if .Paginator.HasNext }}
|
|
<a class="pagination-action" href="{{.Paginator.Next.URL}}"
|
|
style="opacity:1">
|
|
{{ else }}
|
|
<a class="pagination-action" style="opacity:0">
|
|
{{ end }}
|
|
<i class="material-icons pagination-action-icon">
|
|
chevron_right
|
|
</i>
|
|
</a>
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ end }} |