source: trunk/services/templates/list_info.ihtml @ 497

Last change on this file since 497 was 497, checked in by anonymous, 10 years ago

Beginning the process of adapting codebase to foundation styles.

File size: 692 bytes
Line 
1<div class="row">
2    <div class="large-12 text-center columns">
3        <ul class="inline-list">
4            <li><?php printf(_("Listing <strong>%s-%s</strong> of <strong>%s</strong> results on <strong>%s</strong> %s"), (0==$page->total_items ? 0 : $page->first_item+1), (0==$page->total_items ? 0 : $page->last_item+1), $page->total_items, $page->total_pages, (1==$page->total_pages ? _("page") : _("pages"))); ?></li>
5            <?php if ($page->total_pages > 1) { ?>
6                <li class=""><?php $page->printPageNumbers() ?></li>
7                <li><?php echo _("Per page"); ?>:&nbsp;<?php $page->printPerPageLinks() ?></li>
8            <?php } ?>
9        </ul>
10    </div>
11</div>
Note: See TracBrowser for help on using the repository browser.