X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=themes%2Fdefault%2Fhome.twig;h=6bc549e6c6d3e6e43265647800c377f83418f1eb;hb=refs%2Fpull%2F921%2Fhead;hp=bd5fc2d6ed1a8749f2a467dc60136f77ac3c359b;hpb=36a733af8dee1de5a0f81f1efe70e96a435b6a17;p=github%2Fwallabag%2Fwallabag.git diff --git a/themes/default/home.twig b/themes/default/home.twig index bd5fc2d6..6bc549e6 100755 --- a/themes/default/home.twig +++ b/themes/default/home.twig @@ -12,9 +12,15 @@ {% include '_menu.twig' %} {% endblock %} {% block precontent %} - {% include '_sorting.twig' %} + +{% include '_sorting.twig' %} {% endblock %} {% block content %} + + {% if includeImport %} + {% include '_import.twig' %} + {% endif %} + {% if tag %}

{% trans "Tag" %}: {{ tag.value }}

{% endif %} @@ -25,9 +31,15 @@ {% block pager %} {% if nb_results > 1 %}
-
{{ nb_results }} {% trans "results" %}
+
{{ nb_results }} {% trans "results" %}{% if searchterm is defined %}{% trans " found for « " %} {{ searchterm }} »{% endif %}
{{ page_links | raw }}
+ {% elseif nb_results == 1 %} + {% if searchterm is defined %} +
+
{% trans "Only one result found for " %} « {{ searchterm }} »
+
+ {% endif %} {% endif %} {% endblock %} {% for entry in entries %} @@ -43,7 +55,17 @@

{{ entry.content|striptags|slice(0, 300) }}...

{% endfor %} - {% endif %} + {{ block('pager') }} + {% if view == 'home' %}{% if nb_results > 1 %}{% trans "mark all the entries as read" %}{% endif %}{% endif %} + + {% if searchterm is defined %} +{% trans "Tag these results as" %} {{ searchterm }}{% endif %} + + {% if tag %}{% trans "Download the articles from this tag in an epub" %} + {% elseif searchterm is defined %}{% trans "Download the articles from this search in an epub" %} + {% else %}{% trans "Download the articles from this category in an epub" %}{% endif %} + + {% endif %} {% endblock %}