{% if pageCount > 1 %}
<div class="wancho" id="contentpaginator">
<div class="faw__pagination">
{% if previous is defined %}
<a class="button-prev" href="#" paginator data-href="{{ path(route, query|merge({(pageParameterName): previous, 'ajax': 'true'})) }}"></a>
{% endif %}
<div>
<p><span>{{current}}</span> de {{pagesInRange|last}}</p>
</div>
{% if next is defined %}
<a class="button-next" href="#" paginator data-href="{{ path(route, query|merge({(pageParameterName): next, 'ajax': 'true'})) }}"></a>
{% endif %}
</div>
</div>
{% endif %}