diff --git a/themes/baggy/home.twig b/themes/baggy/home.twig
index a935b034a..7bc0472dc 100755
--- a/themes/baggy/home.twig
+++ b/themes/baggy/home.twig
@@ -12,45 +12,45 @@
{% include '_menu.twig' %}
{% endblock %}
{% block content %}
- {% if tag %}
-
{% trans "Tag" %}: {{ tag.value }}
- {% endif %}
- {% if entries is empty %}
- {% trans "No articles found." %}
- {% else %}
-
- {% include '_display-mode.twig' %}
- {% include '_sorting.twig' %}
-
- {% block pager %}
- {% if nb_results > 1 %}
-
-
{{ nb_results }} {% trans "results" %}
- {{ page_links | raw }}
-
- {% endif %}
- {% endblock %}
-
- {% for entry in entries %}
-
-
- {% if entry.content| getReadingTime > 0 %}
-
- {% else %}
-
- {% endif %}
-
-
{{ entry.content|striptags|slice(0, 300) }}...
-
+ {% if tag %}
+
{% trans "Tag" %}: {{ tag.value }}
+ {% endif %}
+ {% if entries is empty %}
+
{% trans "No articles found." %}
+ {% else %}
+
+ {% include '_display-mode.twig' %}
+ {% include '_sorting.twig' %}
+
+ {% block pager %}
+ {% if nb_results > 1 %}
+
+
{{ nb_results }} {% trans "results" %}
+ {{ page_links | raw }}
+
+ {% endif %}
+ {% endblock %}
+
+ {% for entry in entries %}
+
+
+ {% if entry.content| getReadingTime > 0 %}
+
+ {% else %}
+
+ {% endif %}
+
+
{{ entry.content|striptags|slice(0, 300) }}...
+
- {% endfor %}
-
- {% if view == 'home' %}{% if nb_results > 1 %}
{{ "Mark all the entries as read" }}{% endif %}{% endif %}
- {% endif %}
- {{ block('pager') }}
+ {% endfor %}
+
+ {% if view == 'home' %}{% if nb_results > 1 %}{{ "Mark all the entries as read" }}{% endif %}{% endif %}
+ {% endif %}
+ {{ block('pager') }}
{% endblock %}