109 lines
3.6 KiB
Smarty
109 lines
3.6 KiB
Smarty
{*
|
|
* 2018 Anvanto
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Academic Free License (AFL 3.0)
|
|
* that is bundled with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* http://opensource.org/licenses/afl-3.0.php
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to http://www.prestashop.com for more information.
|
|
*
|
|
* @author Anvanto (anvantoco@gmail.com)
|
|
* @copyright 2018 anvanto.com
|
|
|
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*}
|
|
|
|
{if isset($no_follow) AND $no_follow}
|
|
{assign var='no_follow_text' value='rel="nofollow"'}
|
|
{else}
|
|
{assign var='no_follow_text' value=''}
|
|
{/if}
|
|
|
|
{if isset($p) AND $p}
|
|
{if ($n*$p) < $nb_items }
|
|
{assign var='blogShowing' value=$n*$p}
|
|
{else}
|
|
{assign var='blogShowing' value=($n*$p-$nb_items-$n*$p)*-1}
|
|
{/if}
|
|
{if $p==1}
|
|
{assign var='blogShowingStart' value=1}
|
|
{else}
|
|
{assign var='blogShowingStart' value=$n*$p-$n+1}
|
|
{/if}
|
|
|
|
<nav class="pagination">
|
|
|
|
{if $start!=$stop}
|
|
<div id="pagination{if isset($paginationId)}_{$paginationId|escape:'html':'UTF-8'}{/if}" class="col-xs-12 col-md-12 col-lg-12">
|
|
<ul class="page-list clearfix text-sm-center">
|
|
|
|
{if $start==3}
|
|
<li><a {$no_follow_text|escape:'html':'UTF-8'} href="{$link->goPage($requestPage, 1)|escape:'html':'UTF-8'}">1</a></li>
|
|
<li><a {$no_follow_text|escape:'html':'UTF-8'} href="{$link->goPage($requestPage, 2)|escape:'html':'UTF-8'}">2</a></li>
|
|
{/if}
|
|
{if $start==2}
|
|
<li><a {$no_follow_text|escape:'html':'UTF-8'} href="{$link->goPage($requestPage, 1)|escape:'html':'UTF-8'}">1</a></li>
|
|
{/if}
|
|
{if $start>3}
|
|
<li><a {$no_follow_text|escape:'html':'UTF-8'} href="{$link->goPage($requestPage, 1)|escape:'html':'UTF-8'}">1</a></li>
|
|
<li class="truncate">...</li>
|
|
{/if}
|
|
{section name=pagination start=$start loop=$stop+1 step=1}
|
|
{if $p == $smarty.section.pagination.index}
|
|
<li class="current">
|
|
<a {$no_follow_text|escape:'html':'UTF-8'} href="{$link->goPage($requestPage, $smarty.section.pagination.index)|escape:'html':'UTF-8'}" class="disabled">
|
|
{$p|escape:'html':'UTF-8'}
|
|
</a>
|
|
</li>
|
|
{else}
|
|
<li>
|
|
<a {$no_follow_text|escape:'html':'UTF-8'} href="{$link->goPage($requestPage, $smarty.section.pagination.index)|escape:'html':'UTF-8'}">
|
|
{$smarty.section.pagination.index|escape:'html':'UTF-8'}
|
|
</a>
|
|
</li>
|
|
{/if}
|
|
{/section}
|
|
{if $pages_nb>$stop+2}
|
|
<li class="truncate"><span>...</span></li>
|
|
<li>
|
|
<a href="{$link->goPage($requestPage, $pages_nb)|escape:'html':'UTF-8'}">
|
|
{$pages_nb|intval}
|
|
</a>
|
|
</li>
|
|
{/if}
|
|
{if $pages_nb==$stop+1}
|
|
<li>
|
|
<a href="{$link->goPage($requestPage, $pages_nb)|escape:'html':'UTF-8'}">
|
|
{$pages_nb|intval}
|
|
</a>
|
|
</li>
|
|
{/if}
|
|
{if $pages_nb==$stop+2}
|
|
<li>
|
|
<a href="{$link->goPage($requestPage, $pages_nb-1)|escape:'html':'UTF-8'}">
|
|
{$pages_nb-1|intval}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="{$link->goPage($requestPage, $pages_nb)|escape:'html':'UTF-8'}">
|
|
{$pages_nb|intval}
|
|
</a>
|
|
</li>
|
|
{/if}
|
|
|
|
</ul>
|
|
</div>
|
|
{/if}
|
|
</nav>
|
|
{/if} |