forked from Bunteshaus/bunteshaus.de
small fixes
This commit is contained in:
parent
76695ce6ca
commit
408cabab0f
|
@ -1,5 +1,5 @@
|
||||||
{{ $paginator := .paginator}}
|
{{ $paginator := .paginator}}
|
||||||
<div id="pagination">
|
<div id="pagination">
|
||||||
<!-- Number of links either side of the current page. -->
|
<!-- Number of links either side of the current page. -->
|
||||||
{{ $adjacent_links := 2 }}
|
{{ $adjacent_links := 2 }}
|
||||||
|
|
||||||
|
@ -15,74 +15,73 @@
|
||||||
<!-- If there's more than one page. -->
|
<!-- If there's more than one page. -->
|
||||||
{{ if gt $paginator.TotalPages 1 }}
|
{{ if gt $paginator.TotalPages 1 }}
|
||||||
|
|
||||||
|
<!-- First page. -->
|
||||||
|
{{ if ne $paginator.PageNumber 1 }}
|
||||||
|
<a class="pagination__link pagination__link--first" href="{{ $paginator.First.URL }}">
|
||||||
|
««
|
||||||
|
</a>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
<!-- First page. -->
|
<!-- Previous page. -->
|
||||||
{{ if ne $paginator.PageNumber 1 }}
|
{{ if $paginator.HasPrev }}
|
||||||
<a class="pagination__link pagination__link--first" href="{{ $paginator.First.URL }}">
|
<a href="{{ $paginator.Prev.URL }}" class="pagination__link pagination__link--previous">
|
||||||
««
|
«
|
||||||
</a>
|
</a>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
<!-- Previous page. -->
|
<!-- Page numbers. -->
|
||||||
{{ if $paginator.HasPrev }}
|
{{ range $paginator.Pagers }}
|
||||||
<a href="{{ $paginator.Prev.URL }}" class="pagination__link pagination__link--previous">
|
{{ $page_number_flag := false }}
|
||||||
«
|
|
||||||
</a>
|
|
||||||
{{ end }}
|
|
||||||
<!-- Page numbers. -->
|
|
||||||
{{ range $paginator.Pagers }}
|
|
||||||
{{ $page_number_flag := false }}
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Advanced page numbers. -->
|
<!-- Advanced page numbers. -->
|
||||||
{{ if gt $paginator.TotalPages $max_links }}
|
{{ if gt $paginator.TotalPages $max_links }}
|
||||||
|
|
||||||
|
<!-- Lower limit pages. -->
|
||||||
|
<!-- If the user is on a page which is in the lower limit. -->
|
||||||
|
{{ if le $paginator.PageNumber $lower_limit }}
|
||||||
|
|
||||||
|
<!-- If the current loop page is less than max_links. -->
|
||||||
|
{{ if le .PageNumber $max_links }}
|
||||||
|
{{ $page_number_flag = true }}
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
<!-- Upper limit pages. -->
|
||||||
|
<!-- If the user is on a page which is in the upper limit. -->
|
||||||
|
{{ else if ge $paginator.PageNumber $upper_limit }}
|
||||||
|
|
||||||
|
<!-- If the current loop page is greater than total pages minus $max_links -->
|
||||||
|
{{ if gt .PageNumber (sub $paginator.TotalPages $max_links) }}
|
||||||
|
{{ $page_number_flag = true }}
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
<!-- Middle pages. -->
|
||||||
|
{{ else }}
|
||||||
|
|
||||||
|
{{ if and ( ge .PageNumber (sub $paginator.PageNumber $adjacent_links) ) ( le .PageNumber (add $paginator.PageNumber $adjacent_links) ) }}
|
||||||
|
{{ $page_number_flag = true }}
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
<!-- Lower limit pages. -->
|
<!-- Simple page numbers. -->
|
||||||
<!-- If the user is on a page which is in the lower limit. -->
|
{{ else }}
|
||||||
{{ if le $paginator.PageNumber $lower_limit }}
|
|
||||||
|
|
||||||
<!-- If the current loop page is less than max_links. -->
|
{{ $page_number_flag = true }}
|
||||||
{{ if le .PageNumber $max_links }}
|
|
||||||
{{ $page_number_flag = true }}
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
<!-- Upper limit pages. -->
|
<!-- Output page numbers. -->
|
||||||
<!-- If the user is on a page which is in the upper limit. -->
|
{{ if eq $page_number_flag true }}
|
||||||
{{ else if ge $paginator.PageNumber $upper_limit }}
|
<a href="{{ .URL }}" class="pagination__link">
|
||||||
|
{{ if eq $paginator.PageNumber .PageNumber }}<b>{{ end }}
|
||||||
|
{{ .PageNumber }}
|
||||||
|
{{ if eq $paginator.PageNumber .PageNumber }}</b>{{ end }}
|
||||||
|
</a>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
<!-- If the current loop page is greater than total pages minus $max_links -->
|
{{ end }}
|
||||||
{{ if gt .PageNumber (sub $paginator.TotalPages $max_links) }}
|
|
||||||
{{ $page_number_flag = true }}
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Middle pages. -->
|
|
||||||
{{ else }}
|
|
||||||
|
|
||||||
{{ if and ( ge .PageNumber (sub $paginator.PageNumber $adjacent_links) ) ( le .PageNumber (add $paginator.PageNumber $adjacent_links) ) }}
|
|
||||||
{{ $page_number_flag = true }}
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Simple page numbers. -->
|
|
||||||
{{ else }}
|
|
||||||
|
|
||||||
{{ $page_number_flag = true }}
|
|
||||||
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
<!-- Output page numbers. -->
|
|
||||||
{{ if eq $page_number_flag true }}
|
|
||||||
<a href="{{ .URL }}" class="pagination__link">
|
|
||||||
{{ .PageNumber }}
|
|
||||||
</a>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
<!-- Next page. -->
|
<!-- Next page. -->
|
||||||
{{ if $paginator.HasNext }}
|
{{ if $paginator.HasNext }}
|
||||||
|
@ -97,6 +96,5 @@
|
||||||
»»
|
»»
|
||||||
</a>
|
</a>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
Loading…
Reference in New Issue
Block a user