Skip to content

Instantly share code, notes, and snippets.

@d1i1m1o1n
Created November 15, 2015 16:03
Show Gist options
  • Save d1i1m1o1n/8d5185732aeba0b31a2b to your computer and use it in GitHub Desktop.
Save d1i1m1o1n/8d5185732aeba0b31a2b to your computer and use it in GitHub Desktop.
Bitrix template of component news.list. Print prev next page navigation.
<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