diff options
author | Thomas Citharel <tcit@tcit.fr> | 2014-12-19 21:08:44 +0100 |
---|---|---|
committer | Thomas Citharel <tcit@tcit.fr> | 2014-12-19 21:08:44 +0100 |
commit | 3dcd85c075998ecdf2d54c5661c42e24080067d5 (patch) | |
tree | b939cdbf86c1be64ef64d8afb3efd0d55e8a945e /themes/default/home.twig | |
parent | 44b95cb81deae35f58e0058910afde2f2ffb9a60 (diff) | |
parent | e9a64ef8a9776becbe4c621ee4bd762f24b1bc3e (diff) | |
download | wallabag-3dcd85c075998ecdf2d54c5661c42e24080067d5.tar.gz wallabag-3dcd85c075998ecdf2d54c5661c42e24080067d5.tar.zst wallabag-3dcd85c075998ecdf2d54c5661c42e24080067d5.zip |
merge
Diffstat (limited to 'themes/default/home.twig')
-rwxr-xr-x | themes/default/home.twig | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/themes/default/home.twig b/themes/default/home.twig index 6bc549e6..c5db5802 100755 --- a/themes/default/home.twig +++ b/themes/default/home.twig | |||
@@ -57,15 +57,22 @@ | |||
57 | {% endfor %} | 57 | {% endfor %} |
58 | 58 | ||
59 | {{ block('pager') }} | 59 | {{ block('pager') }} |
60 | {% if view == 'home' %}{% if nb_results > 1 %}<p><a title="{% trans "Mark all the entries as read" %}" href="./?action=archive_all">{% trans "Mark all the entries as read" %}</a></p>{% endif %}{% endif %} | ||
61 | {% if searchterm is defined %}<a title="{% trans "Tag these results as" %} {{ searchterm }}" href="./?action=add_tag&search={{ searchterm }}">{% trans "Tag these results as" %} {{ searchterm }}</a>{% endif %}<br /> | ||
60 | 62 | ||
61 | {% if view == 'home' %}{% if nb_results > 1 %}<a title="{% trans "mark all the entries as read" %}" href="./?action=archive_all">{% trans "mark all the entries as read" %}</a>{% endif %}{% endif %} | 63 | {% if tag %} |
62 | 64 | {% if constant('EPUB') == 1 %}<a title="{% trans "Download the articles from this tag in an epub file" %}" href="./?epub&method=tag&value={{ tag.value }}">{% trans "Download as ePub3" %}</a>{% endif %} | |
63 | {% if searchterm is defined %}<a title="{% trans "Tag these results as" %} {{ searchterm }}" href="./?action=add_tag&search={{ searchterm }}"> | 65 | {% if constant('MOBI') == 1 %}<a title="{% trans "Download the articles from this tag in a mobi file" %}" href="./?mobi&method=tag&value={{ tag.value }}">{% trans "Download as Mobi" %}</a>{% endif %} |
64 | {% trans "Tag these results as" %} {{ searchterm }}</a>{% endif %} | 66 | {% if constant('PDF') == 1 %}<a title="{% trans "Download the articles from this tag in a pdf file" %}" href="./?pdf&method=tag&value={{ tag.value }}">{% trans "Download as PDF" %}</a>{% endif %} |
65 | 67 | {% elseif searchterm is defined %} | |
66 | {% if tag %}<a title="{% trans "Download the articles from this tag in an epub" %}" href="./?epub&method=tag&value={{ tag.value }}">{% trans "Download the articles from this tag in an epub" %}</a> | 68 | {% if constant('EPUB') == 1 %}<a title="{% trans "Download the articles from this search in an epub" %}" href="./?epub&method=search&value={{ searchterm }}">{% trans "Download as ePub3" %}</a>{% endif %} |
67 | {% elseif searchterm is defined %}<a title="{% trans "Download the articles from this search in an epub" %}" href="./?epub&method=search&value={{ searchterm }}">{% trans "Download the articles from this search in an epub" %}</a> | 69 | {% if constant('MOBI') == 1 %}<a title="{% trans "Download the articles from this search in a mobi file" %}" href="./?mobi&method=search&value={{ searchterm }}">{% trans "Download as Mobi" %}</a>{% endif %} |
68 | {% else %}<a title="{% trans "Download the articles from this category in an epub" %}" href="./?epub&method=category&value={{ view }}">{% trans "Download the articles from this category in an epub" %}</a>{% endif %} | 70 | {% if constant('PDF') == 1 %}<a title="{% trans "Download the articles from this search in a pdf file" %}" href="./?pdf&method=search&value={{ searchterm }}">{% trans "Download as PDF" %}</a>{% endif %} |
71 | {% else %} | ||
72 | {% if constant('EPUB') == 1 %}<a title="{% trans "Download the articles from this category in an epub" %}" href="./?epub&method=category&value={{ view }}">{% trans "Download as ePub3" %}</a>{% endif %} | ||
73 | {% if constant('MOBI') == 1 %}<a title="{% trans "Download the articles from this category in a mobi file" %}" href="./?mobi&method=category&value={{ view }}">{% trans "Download as Mobi" %}</a>{% endif %} | ||
74 | {% if constant('PDF') == 1 %}<a title="{% trans "Download the articles from this category in a pdf file" %}" href="./?pdf&method=category&value={{ view }}">{% trans "Download as PDF" %}</a>{% endif %} | ||
75 | {% endif %} | ||
69 | 76 | ||
70 | {% endif %} | 77 | {% endif %} |
71 | {% endblock %} | 78 | {% endblock %} |