Skip to content

Instantly share code, notes, and snippets.

@os-kingsley
os-kingsley / pagination.html
Last active September 10, 2019 09:14
Customised Pagination in twig with dots using bootstrap 4
<nav aria-label="Page navigation example" style="font-size: 17px;">
<!--
Make Previous button enabled if the record.currentPage is greater than 1 else disable the button
-->
{% if record.hasPages %}
<ul class="pagination justify-content-center">
{% if record.currentPage > 1 %}
<li class="page-item">
<a class="page-link" href="{{ record.previousPageUrl }}" rel="prev" >Previous</a>
</li>