Bug 13205: [FOLLOW-UP] Fixing math and variable names
[koha.git] / koha-tmpl / opac-tmpl / bootstrap / en / includes / page-numbers.inc
blobfbfdfc81248d8b90cc532c945c091a5def107ecb
1 [% IF ( PAGE_NUMBERS ) %]
2     <div class="pagination pagination-small noprint">
3         <ul>
4             [% IF ( previous_page_offset.defined ) %]
5                 <li><a href="/cgi-bin/koha/opac-search.pl?[% query_cgi |html %][% limit_cgi |html %][% IF ( sort_by ) %]&amp;sort_by=[% sort_by |html %][% END %]">First</a></li>
6                 <li><a href="/cgi-bin/koha/opac-search.pl?[% query_cgi |html %][% limit_cgi |html %]&amp;offset=[% previous_page_offset %][% IF ( sort_by ) %]&amp;sort_by=[% sort_by |html %][% END %]">&laquo; Previous</a></li>
7             [% END %]
8             [% FOREACH PAGE_NUMBER IN PAGE_NUMBERS %]
9                 [% IF ( PAGE_NUMBER.highlight ) %]
10                     <li class="active"><a href="#">[% PAGE_NUMBER.pg %]</a></li>
11                 [% ELSE %]
12                     <li><a href="/cgi-bin/koha/opac-search.pl?[% query_cgi |html %][% limit_cgi |html %]&amp;offset=[% PAGE_NUMBER.offset %][% IF ( sort_by ) %]&amp;sort_by=[% sort_by |html%][% END %]">[% PAGE_NUMBER.pg %]</a></li>
13                 [% END %]
14             [% END %]
15             [% IF ( next_page_offset ) %]
16                 <li><a href="/cgi-bin/koha/opac-search.pl?[% query_cgi |html %][% limit_cgi |html %]&amp;offset=[% next_page_offset %][% IF ( sort_by ) %]&amp;sort_by=[% sort_by |html %][% END %]">Next &raquo;</a></li>
17                 <li><a href="/cgi-bin/koha/opac-search.pl?[% query_cgi |html %][% limit_cgi |html %]&amp;offset=[% last_page_offset %][% IF ( sort_by ) %]&amp;sort_by=[% sort_by |html %][% END %]">Last</a></li>
18             [% END %]
19         </ul>
20     </div>
21 [% END %]