<?php if ($block->getCollection()->getSize()): ?> <?php if ($block->getUseContainer()): ?> <div class="pager"><?php endif ?> <?php if ($block->getLastPageNum()>1): ?> <div class="pages"><strong class="label pages-label" id="paging-label"><?= /* @escapeNotVerified */ __('Page') ?></strong> <ul class="items pages-items" aria-labelledby="paging-label"><?php if (!$block->isFirstPage()): ?> <li class="item pages-item-previous"><?php $text = $block->getAnchorTextForPrevious() ? $block->getAnchorTextForPrevious() : '';?> <a class="<?= /* @escapeNotVerified */ $text ? 'link ' : 'action ' ?> previous" href="<?= /* @escapeNotVerified */ $block->getPreviousPageUrl() ?>" title="<?= /* @escapeNotVerified */ $text ? $text : __('Previous') ?>"><span class="label"><?= /* @escapeNotVerified */ __('Page') ?></span> <span><?= /* @escapeNotVerified */ $text ? $text : __('Previous') ?></span></a></li> <?php endif;?> <?php if ($block->canShowFirst()): ?> <li class="item"><a class="page first" href="<?= /* @escapeNotVerified */ $block->getFirstPageUrl() ?>"><span class="label"><?= /* @escapeNotVerified */ __('Page') ?></span> <span>1</span></a></li> <?php endif;?> <?php if ($block->canShowPreviousJump()): ?> <li class="item"><a class="page previous jump" title="" href="<?= /* @escapeNotVerified */ $block->getPreviousJumpUrl() ?>"><span>...</span></a></li> <?php endif;?> <?php foreach ($block->getFramePages() as $_page): ?> <?php if ($block->isPageCurrent($_page)): ?> <li class="item current"><strong class="page"><span class="label"><?= /* @escapeNotVerified */ __('You\'re currently reading page') ?></span> <span><?= /* @escapeNotVerified */ $_page ?></span></strong></li> <?php else: ?> <li class="item"><a href="<?= /* @escapeNotVerified */ $block->getPageUrl($_page) ?>" class="page"><span class="label"><?= /* @escapeNotVerified */ __('Page') ?></span> <span><?= /* @escapeNotVerified */ $_page ?></span></a></li> <?php endif;?> <?php endforeach;?> <?php if ($block->canShowNextJump()): ?> <li class="item"><a class="page next jump" title="" href="<?= /* @escapeNotVerified */ $block->getNextJumpUrl() ?>"><span>...</span></a></li> <?php endif;?> <?php if ($block->canShowLast()): ?> <li class="item"><a class="page last" href="<?= /* @escapeNotVerified */ $block->getLastPageUrl() ?>"><span class="label"><?= /* @escapeNotVerified */ __('Page') ?></span> <span><?= /* @escapeNotVerified */ $block->getLastPageNum() ?></span></a></li> <?php endif;?> <?php if (!$block->isLastPage()): ?> <li class="item pages-item-next"><?php $text = $block->getAnchorTextForNext() ? $block->getAnchorTextForNext() : '';?> <a class="<?= /* @escapeNotVerified */ $text ? 'link ' : 'action ' ?> next" href="<?= /* @escapeNotVerified */ $block->getNextPageUrl() ?>" title="<?= /* @escapeNotVerified */ $text ? $text : __('Next') ?>"><span class="label"><?= /* @escapeNotVerified */ __('Page') ?></span> <span><?= /* @escapeNotVerified */ $text ? $text : __('Next') ?></span></a></li> <?php endif;?></ul></div><?php endif; ?> <?php if ($block->getUseContainer()): ?></div><?php endif ?> <?php endif ?>