aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/pager.html.twig
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-10-22 13:07:37 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-10-22 13:09:16 +0200
commit817724a7b8507877a81f3ff53639f7b49cb05851 (patch)
tree5a953d0ad4c57333bdfe3b0d47b0a6d597c49491 /src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/pager.html.twig
parentab61dbc073fa97afa2b3b9f9d3faed66d5d05b7b (diff)
downloadwallabag-817724a7b8507877a81f3ff53639f7b49cb05851.tar.gz
wallabag-817724a7b8507877a81f3ff53639f7b49cb05851.tar.zst
wallabag-817724a7b8507877a81f3ff53639f7b49cb05851.zip
Re-add bottom pagination
Also pager.html.twig wasn’t necessary, there weren't enough duplication to put them in a dedicated template
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/pager.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/pager.html.twig12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/pager.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/pager.html.twig
deleted file mode 100644
index faaa21a8..00000000
--- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/pager.html.twig
+++ /dev/null
@@ -1,12 +0,0 @@
1{% block pager %}
2 <div class="results">
3 <div class="nb-results">{{ 'entry.list.number_on_the_page'|transchoice(entries.count) }}</div>
4 <div class="pagination">
5 <i class="btn-clickable download-btn material-icons md-36">file_download</i>
6 <i class="btn-clickable filter-btn material-icons md-36">filter_list</i>
7 {% if entries.getNbPages > 1 %}
8 {{ pagerfanta(entries, 'twitter_bootstrap_translated', {'proximity': 1}) }}
9 {% endif %}
10 </div>
11 </div>
12{% endblock %}