custom/plugins/zenitPlatformHorizon/src/Resources/views/storefront/component/pagination.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/pagination.html.twig' %}
  2. {% block component_pagination_first %}
  3.     {% if theme_config('zen-layout-pagination-hide-disabled') != true or currentPage != 1 %}
  4.         {{ parent() }}
  5.     {% endif %}
  6. {% endblock %}
  7. {% block component_pagination_prev %}
  8.     {% if theme_config('zen-layout-pagination-hide-disabled') != true or currentPage != 1 %}
  9.         {{ parent() }}
  10.     {% endif %}
  11. {% endblock %}
  12. {% block component_pagination_next %}
  13.     {% if theme_config('zen-layout-pagination-hide-disabled') != true or currentPage != totalPages %}
  14.         {{ parent() }}
  15.     {% endif %}
  16. {% endblock %}
  17. {% block component_pagination_last %}
  18.     {% if theme_config('zen-layout-pagination-hide-disabled') != true or currentPage != totalPages %}
  19.         {{ parent() }}
  20.     {% endif %}
  21. {% endblock %}