diff options
author | NumEricR <eric.github@gmail.com> | 2013-08-23 18:45:34 +0200 |
---|---|---|
committer | NumEricR <eric.github@gmail.com> | 2013-08-23 18:45:34 +0200 |
commit | 4b4afc7322cef96575649a47e34b1621a5aab1fd (patch) | |
tree | fe1398ed7287d010f8405e46915fc7b9384087ec /tpl/home.twig | |
parent | 29773c9729038510728738908b58fd8a86ef943b (diff) | |
download | wallabag-4b4afc7322cef96575649a47e34b1621a5aab1fd.tar.gz wallabag-4b4afc7322cef96575649a47e34b1621a5aab1fd.tar.zst wallabag-4b4afc7322cef96575649a47e34b1621a5aab1fd.zip |
Add textual content on tools links
Diffstat (limited to 'tpl/home.twig')
-rw-r--r-- | tpl/home.twig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tpl/home.twig b/tpl/home.twig index 8ef6adc0..6f6c17e1 100644 --- a/tpl/home.twig +++ b/tpl/home.twig | |||
@@ -15,9 +15,9 @@ | |||
15 | <div id="entry-{{ entry.id|e }}" class="entrie"> | 15 | <div id="entry-{{ entry.id|e }}" class="entrie"> |
16 | <h2><a href="index.php?view=view&id={{ entry.id|e }}">{{ entry.title|e }}</a></h2> | 16 | <h2><a href="index.php?view=view&id={{ entry.id|e }}">{{ entry.title|e }}</a></h2> |
17 | <ul class="tools"> | 17 | <ul class="tools"> |
18 | <li><a title="{% trans "toggle mark as read" %}" class="tool archive {% if entry.is_read == 0 %}archive-off{% endif %}" href="./?action=toggle_archive&id={{ entry.id|e }}"><span></span></a></li> | 18 | <li><a title="{% trans "toggle mark as read" %}" class="tool archive {% if entry.is_read == 0 %}archive-off{% endif %}" href="./?action=toggle_archive&id={{ entry.id|e }}"><span>{% trans "toggle mark as read" %}</span></a></li> |
19 | <li><a title="{% trans "toggle favorite" %}" class="tool fav {% if entry.is_fav == 0 %}fav-off{% endif %}" href="./?action=toggle_fav&id={{ entry.id|e }}"><span></span></a></li> | 19 | <li><a title="{% trans "toggle favorite" %}" class="tool fav {% if entry.is_fav == 0 %}fav-off{% endif %}" href="./?action=toggle_fav&id={{ entry.id|e }}"><span>{% trans "toggle favorite" %}</span></a></li> |
20 | <li><a title="{% trans "delete" %}" class="tool delete" href="./?action=delete&id={{ entry.id|e }}"><span></span></a></li> | 20 | <li><a title="{% trans "delete" %}" class="tool delete" href="./?action=delete&id={{ entry.id|e }}"><span>{% trans "delete" %}</span></a></li> |
21 | <li class="reading-time">{{ entry.content| getReadingTime }} min</li> | 21 | <li class="reading-time">{{ entry.content| getReadingTime }} min</li> |
22 | </ul> | 22 | </ul> |
23 | <p>{{ entry.content|striptags|slice(0, 300) }}...</p> | 23 | <p>{{ entry.content|striptags|slice(0, 300) }}...</p> |