diff --git a/src/Wallabag/CoreBundle/Resources/views/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/Entry/entries.html.twig
index 6c68d215e..2aede087d 100644
--- a/src/Wallabag/CoreBundle/Resources/views/Entry/entries.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/Entry/entries.html.twig
@@ -29,11 +29,15 @@
+
+
+
+ {% for entry in entries %}
+ -
+ {% if list_mode == 1 %}
+ {% include "@WallabagCore/Entry/_card_list.html.twig" with {'entry': entry, 'currentRoute': current_route, 'routes': entries_with_archived_class_routes} only %}
+ {% elseif not entry.previewPicture is null and entry.mimetype starts with 'image/' %}
+ {% include "@WallabagCore/Entry/_card_full_image.html.twig" with {'entry': entry, 'currentRoute': current_route, 'routes': entries_with_archived_class_routes} only %}
+ {% else %}
+ {% include "@WallabagCore/Entry/_card_preview.html.twig" with {'entry': entry, 'currentRoute': current_route, 'routes': entries_with_archived_class_routes} only %}
+ {% endif %}
+
+ {% endfor %}
+
{% endif %}
-
-
-
- {% for entry in entries %}
- -
- {% if list_mode == 1 %}
- {% include "@WallabagCore/Entry/_card_list.html.twig" with {'entry': entry, 'currentRoute': current_route, 'routes': entries_with_archived_class_routes} only %}
- {% elseif not entry.previewPicture is null and entry.mimetype starts with 'image/' %}
- {% include "@WallabagCore/Entry/_card_full_image.html.twig" with {'entry': entry, 'currentRoute': current_route, 'routes': entries_with_archived_class_routes} only %}
- {% else %}
- {% include "@WallabagCore/Entry/_card_preview.html.twig" with {'entry': entry, 'currentRoute': current_route, 'routes': entries_with_archived_class_routes} only %}
- {% endif %}
-
- {% endfor %}
-
{% if entries.getNbPages > 1 %}