aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig
diff options
context:
space:
mode:
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.twig18
1 files changed, 16 insertions, 2 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 3af88b23..cc150cf1 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
@@ -5,7 +5,17 @@
5{% endblock %} 5{% endblock %}
6 6
7{% block content %} 7{% block content %}
8 {% include "WallabagCoreBundle:Entry:pager.html.twig" with {'entries': entries} %} 8
9 <div class="results">
10 <div class="nb-results">{{ 'entry.list.number_on_the_page'|transchoice(entries.count) }}</div>
11 <div class="pagination">
12 <i class="btn-clickable download-btn material-icons md-36">file_download</i>
13 <i class="btn-clickable filter-btn material-icons md-36">filter_list</i>
14 {% if entries.getNbPages > 1 %}
15 {{ pagerfanta(entries, 'twitter_bootstrap_translated', {'proximity': 1}) }}
16 {% endif %}
17 </div>
18 </div>
9 19
10 {% for entry in entries %} 20 {% for entry in entries %}
11 <div id="entry-{{ entry.id|e }}" class="entry"> 21 <div id="entry-{{ entry.id|e }}" class="entry">
@@ -46,6 +56,10 @@
46 </div> 56 </div>
47 {% endfor %} 57 {% endfor %}
48 58
59 {% if entries.getNbPages > 1 %}
60 {{ pagerfanta(entries, 'twitter_bootstrap_translated', {'proximity': 1}) }}
61 {% endif %}
62
49 <!-- Export --> 63 <!-- Export -->
50 <aside id="download-form"> 64 <aside id="download-form">
51 {% set currentRoute = app.request.attributes.get('_route') %} 65 {% set currentRoute = app.request.attributes.get('_route') %}
@@ -67,7 +81,7 @@
67 81
68 <!-- Filter --> 82 <!-- Filter -->
69 {% if form is not null %} 83 {% if form is not null %}
70 <div id="filters" class=""> 84 <div id="filters">
71 <form method="get" action="{{ path('all') }}"> 85 <form method="get" action="{{ path('all') }}">
72 <h2>{{ 'entry.filters.title'|trans }}</h2> 86 <h2>{{ 'entry.filters.title'|trans }}</h2>
73 <a href="javascript: void(null);" id="filter-form-close" class="close-button--popup close-button">&times;</a> 87 <a href="javascript: void(null);" id="filter-form-close" class="close-button--popup close-button">&times;</a>