aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/pager.html.twig
blob: faaa21a8b99a89d3336257d769a5c7f7a33f6421 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{% block pager %}
    <div class="results">
        <div class="nb-results">{{ 'entry.list.number_on_the_page'|transchoice(entries.count) }}</div>
        <div class="pagination">
            <i class="btn-clickable download-btn material-icons md-36">file_download</i>
            <i class="btn-clickable filter-btn material-icons md-36">filter_list</i>
            {% if entries.getNbPages > 1 %}
                {{ pagerfanta(entries, 'twitter_bootstrap_translated', {'proximity': 1}) }}
            {% endif %}
        </div>
    </div>
{% endblock %}