| 123456789101112131415161718192021222324252627282930 |
- <nav class="bottom-pagination-content clearfix">
- <div class="col-md-4">
- {l s='Showing %from%-%to% of %total% item(s)' d='Shop.Theme.Catalog' sprintf=['%from%' => $pagination.items_shown_from ,'%to%' => $pagination.items_shown_to, '%total%' => $pagination.total_items]}
- </div>
- <div class="pagination">
- <ul class="page-list clearfix">
- {foreach from=$pagination.pages item="page"}
- <li {if $page.current} class="active current" {/if}>
- {if $page.type === 'spacer'}
- <span class="spacer">…</span>
- {else}
- <a
- rel="{if $page.type === 'previous'}prev{elseif $page.type === 'next'}next{else}nofollow{/if}"
- href="{$page.url}"
- class="{if $page.type === 'previous'}previous {elseif $page.type === 'next'}next {/if}{['disabled' => !$page.clickable, 'js-blog-link' => true]|classnames}"
- >
- {if $page.type === 'previous'}
- <i class="icon-angle-left"></i>
- {elseif $page.type === 'next'}
- <i class="icon-angle-right"></i>
- {else}
- {$page.page}
- {/if}
- </a>
- {/if}
- </li>
- {/foreach}
- </ul>
- </div>
- </nav>
|