Bug 10309 - New OPAC theme based on Bootstrap
[koha-equinox.git] / koha-tmpl / opac-tmpl / bootstrap / en / includes / page-numbers.inc
1 [% IF ( PAGE_NUMBERS ) %]
2     <div class="pagination pagination-small">
3         <ul>
4         [% IF ( previous_page_offset.defined ) %]
5             <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>
6         [% END %]
7         [% FOREACH PAGE_NUMBER IN PAGE_NUMBERS %]
8             [% IF ( PAGE_NUMBER.highlight ) %]
9                 <li class="active"><a href="#">[% PAGE_NUMBER.pg %]</a></li>
10             [% ELSE %]
11                 <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>
12             [% END %]
13         [% END %]
14         [% IF ( next_page_offset ) %]
15             <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>
16         [% END %]
17         </ul>
18     </div>
19 [% END %]