mirror of
https://github.com/Vimux/Binario.git
synced 2024-11-11 01:38:28 +00:00
Format pagination partial
This commit is contained in:
parent
1b73262d85
commit
64780c1741
1 changed files with 21 additions and 15 deletions
|
@ -9,13 +9,19 @@
|
|||
{{- if $showNumber }}
|
||||
{{- $.Scratch.Set "__paginator.ellipsed" false }}
|
||||
{{- $.Scratch.Set "__paginator.shouldEllipse" false }}
|
||||
{{ else }}
|
||||
{{- else }}
|
||||
{{- $.Scratch.Set "__paginator.shouldEllipse" (not ($.Scratch.Get "__paginator.ellipsed") ) }}
|
||||
{{- $.Scratch.Set "__paginator.ellipsed" true }}
|
||||
{{- end }}
|
||||
{{- if $showNumber }}
|
||||
{{- if eq . $pag }}<span class="pagination__item pagination__item--active" data-total="{{ $pag.TotalPages }}">{{ .PageNumber }}</span>{{ else }}<a class="pagination__item pagination__item--desktop" href="{{ .URL }}">{{ .PageNumber }}</a>{{- end }}
|
||||
{{ else if ($.Scratch.Get "__paginator.shouldEllipse") }}
|
||||
{{- if eq . $pag }}
|
||||
<span class="pagination__item pagination__item--active" data-total="{{ $pag.TotalPages }}">
|
||||
{{- .PageNumber -}}
|
||||
</span>
|
||||
{{- else }}
|
||||
<a class="pagination__item pagination__item--desktop" href="{{ .URL }}">{{ .PageNumber }}</a>
|
||||
{{- end }}
|
||||
{{- else if ($.Scratch.Get "__paginator.shouldEllipse") }}
|
||||
<span class="pagination__item pagination__item--gap">…</span>
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
|
Loading…
Reference in a new issue