Skip to content

Commit

Permalink
Fix template style.
Browse files Browse the repository at this point in the history
  • Loading branch information
EreMaijala committed Aug 14, 2023
1 parent 7f32429 commit 41dc788
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions themes/bootstrap3/templates/search/pagination_simple.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
<li role="none">
<a class="page-prev" href="<?=$this->results->getUrlQuery()->setPage($this->previous)?>">
<span class="sr-only"><?=$this->transEsc('page_prev')?></span>
<?=$this->icon('page-prev') ?></a>
<?=$this->icon('page-prev') ?>
</a>
</li>
<?php endif; ?>
<li class="pager-text">
Expand All @@ -20,7 +21,10 @@
</li>
<?php if (isset($this->next)): ?>
<li role="none">
<a class="page-next" href="<?=$this->results->getUrlQuery()->setPage($this->next)?>"><span class="sr-only"><?=$this->transEsc('page_next')?></span><?=$this->icon('page-next') ?></a>
<a class="page-next" href="<?=$this->results->getUrlQuery()->setPage($this->next)?>">
<span class="sr-only"><?=$this->transEsc('page_next')?></span>
<?=$this->icon('page-next') ?>
</a>
</li>
<?php endif; ?>
</ul>
Expand Down

0 comments on commit 41dc788

Please sign in to comment.