_search_pagination partial - CrystalCommerce Liquid Documentation for Designers

_search_pagination partial

File: _search_pagination.liquid

Default Liquid Template

{% if max > 1 %}
  {% if previous_page %}
    <a href="{{ site.search_path }}?q={{query}}&c={{category_selected}}&page={{previous_page}}">Previous</a> | 
  {% endif %}
  Page {{ current_page }} of {{ max }}
  {% if next_page %}
    | <a href="{{ site.search_path }}?q={{query}}&c={{category_selected}}&page={{next_page}}">Next</a>
  {% endif %}
{% endif %}

Default Mobile Liquid Template

{% if max > 1 %}
	{% if previous_page %}
    <a href="{{ site.search_path }}?q={{query}}&c={{category_selected}}&page={{previous_page}}">Previous</a> | 
	{% endif %}
	Page {{ current_page }} of {{ max }}
	{% if next_page %}
		| <a href="{{ site.search_path }}?q={{query}}&c={{category_selected}}&page={{next_page}}">Next</a>
	{% endif %}
{% endif %}