Created
November 15, 2015 16:03
-
-
Save d1i1m1o1n/8d5185732aeba0b31a2b to your computer and use it in GitHub Desktop.
Bitrix template of component news.list. Print prev next page navigation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<nav class="catalog__nav"> | |
<?if(($arResult["NAV_RESULT"]->PAGEN - 1) > 0):?> | |
<a href="?PAGEN_1=<?=($arResult["NAV_RESULT"]->PAGEN - 1);?>" class="catalog__nav-active">← Предыдущая</a> | |
<?else:?> | |
<a href="#">← Предыдущая</a> | |
<?endif;?> | |
<?if(($arResult["NAV_RESULT"]->PAGEN + 1) <= $arResult["NAV_RESULT"]->NavPageCount):?> | |
<a href="?PAGEN_1=<?=($arResult["NAV_RESULT"]->PAGEN + 1);?>" class="catalog__nav-active">Следующая →</a> | |
<?else:?> | |
<a href="#">Следующая →</a> | |
<?endif;?> | |
</nav> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment