X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=themes%2Fdefault%2Fhome.twig;h=b90005598cbbb5ffa3e924fce530427720c09230;hb=64364606dd217017d909c71166c303dd53ff55a9;hp=165fecc631e0a7bf6673e28b75295b98e2f4963f;hpb=99679d06884120c57f43b44e55e03595f1f87bed;p=github%2Fwallabag%2Fwallabag.git diff --git a/themes/default/home.twig b/themes/default/home.twig old mode 100644 new mode 100755 index 165fecc6..b9000559 --- a/themes/default/home.twig +++ b/themes/default/home.twig @@ -12,14 +12,15 @@ {% include '_menu.twig' %} {% endblock %} {% block precontent %} - {% if entries|length > 1 %} - - {% endif %} + +{% include '_sorting.twig' %} {% endblock %} {% block content %} + + {% if includeImport %} + {% include '_import.twig' %} + {% endif %} + {% if tag %}

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

{% endif %} @@ -30,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 %} @@ -48,7 +55,28 @@

{{ 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 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 searchterm is defined %}{% trans "Delete results matching" %} {{ searchterm }}{% endif %}
+ + {% if tag %}{% trans "Mark all articles from this tag as read" %}
{% endif %} + + {% if tag %} + {% if constant('EPUB') == 1 %}{% trans "Download as ePub3" %}{% endif %} + {% if constant('MOBI') == 1 %}{% trans "Download as Mobi" %}{% endif %} + {% if constant('PDF') == 1 %}{% trans "Download as PDF" %}{% endif %} + {% elseif searchterm is defined %} + {% if constant('EPUB') == 1 %}{% trans "Download as ePub3" %}{% endif %} + {% if constant('MOBI') == 1 %}{% trans "Download as Mobi" %}{% endif %} + {% if constant('PDF') == 1 %}{% trans "Download as PDF" %}{% endif %} + {% else %} + {% if constant('EPUB') == 1 %}{% trans "Download as ePub3" %}{% endif %} + {% if constant('MOBI') == 1 %}{% trans "Download as Mobi" %}{% endif %} + {% if constant('PDF') == 1 %}{% trans "Download as PDF" %}{% endif %} + {% endif %} + + {% endif %} {% endblock %}