aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/pager.html.twig
blob: ac74676aaeae3c51cf0a04d38073100cf316441c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{% block pager %}
    <div class="results">
        <div class="nb-results">{{ 'entry.list.number_on_the_page'|transchoice(entries.count) }}</div>
        <div class="pagination">
            <a href="#" id="filter">{{ 'entry.filters.title'|trans }}</a>
            {% if entries.getNbPages > 1 %}
                {{ pagerfanta(entries, 'twitter_bootstrap_translated', {'proximity': 1}) }}
            {% endif %}
        </div>
    </div>
{% endblock %}