{
"type": "header",
"content": "Pagination Type"
},
{
"type": "select",
"id": "pagination_type",
"options": [
{
"value": "default",
"label": "Default Pagination"
},
{
"value": "inflating",
"label": "Inflating Pagination"
}
],
"default": "inflating",
"label": "Pagination Type"
},
{% if section.settings.pagination_type == 'default' %}
{%- if paginate.pages > 1 -%}
{% render 'pagination', paginate: paginate, anchor: '' %}
{%- endif -%}
{% elsif section.settings.pagination_type == 'inflating' %}
<div data-pagination-link class="show_more_btn text-center">
{% if paginate.next %}
<a href="{{ paginate.next.url }}" class="button button--primary black" data-pagination-btn>{{ section.settings.btn_load }}</a>
{% endif %}
</div>
{% endif %}