aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-05-04 10:18:08 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-05-04 10:18:08 +0200
commit8ae9a3f52f6359b2f9170a46298719020f38b928 (patch)
tree09a25c73c344a84f1918f8feefe514bddbd52608 /src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig
parent9b57bac8b9ad95d1b4de051222b0f351991997f0 (diff)
parent09e5b9391e0a09db02b2aa4c8f649b59e3baeb16 (diff)
downloadwallabag-8ae9a3f52f6359b2f9170a46298719020f38b928.tar.gz
wallabag-8ae9a3f52f6359b2f9170a46298719020f38b928.tar.zst
wallabag-8ae9a3f52f6359b2f9170a46298719020f38b928.zip
Merge pull request #2022 from wallabag/fix-pagination-bar
Fix pagination bar on small devices
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig13
1 files changed, 2 insertions, 11 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig
index c093edcb..a2caaebf 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig
@@ -3,17 +3,7 @@
3{% block title %}{{ 'entry.page_titles.unread'|trans }}{% endblock %} 3{% block title %}{{ 'entry.page_titles.unread'|trans }}{% endblock %}
4 4
5{% block content %} 5{% block content %}
6 {% block pager %} 6 {% include "WallabagCoreBundle:Entry:pager.html.twig" with {'entries': entries} %}
7 <div class="results">
8 <div class="nb-results">{{ 'entry.list.number_on_the_page'|transchoice(entries.count) }}</div>
9 <div class="pagination">
10 <a href="#" id="filter">{{ 'entry.filters.title'|trans }}</a>
11 {% if entries.getNbPages > 1 %}
12 {{ pagerfanta(entries, 'twitter_bootstrap_translated', {'proximity': 1}) }}
13 {% endif %}
14 </div>
15 </div>
16 {% endblock %}
17 7
18 {% for entry in entries %} 8 {% for entry in entries %}
19 <div id="entry-{{ entry.id|e }}" class="entry"> 9 <div id="entry-{{ entry.id|e }}" class="entry">
@@ -121,4 +111,5 @@
121 </form> 111 </form>
122 </aside> 112 </aside>
123 113
114 {% include "WallabagCoreBundle:Entry:pager.html.twig" with {'entries': entries} %}
124{% endblock %} 115{% endblock %}