|
Lines 8-44
Link Here
|
| 8 |
[% PROCESS 'opac-authorities.inc' %] |
8 |
[% PROCESS 'opac-authorities.inc' %] |
| 9 |
[% PROCESS 'authorities-search-results.inc' %] |
9 |
[% PROCESS 'authorities-search-results.inc' %] |
| 10 |
[% PROCESS 'i18n.inc' %] |
10 |
[% PROCESS 'i18n.inc' %] |
| 11 |
[% BLOCK pagination %] |
|
|
| 12 |
<nav class="pagination pagination-sm noprint" aria-label="Search results pagination"> |
| 13 |
<ul class="pagination"> |
| 14 |
[% IF ( displayprev ) %] |
| 15 |
<li class="page-item"> |
| 16 |
<a class="page-link" href="opac-authorities-home.pl?startfrom=[% startfromprev | uri %]&[% FOREACH searchdat IN searchdata %][% searchdat.term | uri %]=[% searchdat.val |url %]&[% END %]resultsperpage=[% resultsperpage | uri %]&type=opac&op=do_search&authtypecode=[% authtypecode | uri %]&orderby=[% orderby | uri %]" aria-label="Go to the previous page"> |
| 17 |
<i class="fa fa-fw fa-angle-left" aria-hidden="true"></i> Previous |
| 18 |
</a> |
| 19 |
</li> |
| 20 |
[% END %] |
| 21 |
[% FOREACH number IN numbers %] |
| 22 |
[% IF ( number.highlight ) %] |
| 23 |
<li class="page-item active" aria-current="page"> |
| 24 |
<a class="page-link" href="#" aria-label="Current page: Page [% number.number | html %]">[% number.number | html %]</a> |
| 25 |
</li> |
| 26 |
[% ELSE %] |
| 27 |
<li class="page-item"> |
| 28 |
<a class="page-link" href="opac-authorities-home.pl?startfrom=[% number.startfrom | uri %]&[% FOREACH searchdat IN number.searchdata %][% searchdat.term | uri %]=[% searchdat.val |url %]&[% END %]resultsperpage=[% resultsperpage | uri %]&type=opac&op=do_search&authtypecode=[% authtypecode | uri %]&orderby=[% orderby | uri %]" aria-label="Go to page [% number.number | html %]">[% number.number | html %]</a> |
| 29 |
</li> |
| 30 |
[% END %] |
| 31 |
[% END %] |
| 32 |
[% IF ( displaynext ) %] |
| 33 |
<li class="page-item"> |
| 34 |
<a class="page-link" href="opac-authorities-home.pl?startfrom=[% startfromnext | uri %]&[% FOREACH searchdat IN searchdata %][% searchdat.term | uri %]=[% searchdat.val |url %]&[% END %]&resultsperpage=[% resultsperpage | uri %]&type=opac&op=do_search&authtypecode=[% authtypecode | uri %]&orderby=[% orderby | uri %]" aria-label="Go to the next page"> |
| 35 |
Next <i class="fa fa-fw fa-angle-double-right" aria-hidden="true"></i> |
| 36 |
</a> |
| 37 |
</li> |
| 38 |
[% END %] |
| 39 |
</ul> |
| 40 |
</nav> <!-- / #pages --> |
| 41 |
[% END %] |
| 42 |
[% INCLUDE 'doc-head-open.inc' %] |
11 |
[% INCLUDE 'doc-head-open.inc' %] |
| 43 |
<title>[% FILTER collapse %] |
12 |
<title>[% FILTER collapse %] |
| 44 |
[% t("Results") | html %] › |
13 |
[% t("Results") | html %] › |
| 45 |
- |
|
|