diff options
Diffstat (limited to 'src/Wallabag')
-rw-r--r-- | src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig index d73d2703..b4f2abc9 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig | |||
@@ -47,7 +47,7 @@ | |||
47 | 47 | ||
48 | <li class="bold border-bottom hide-on-med-and-down"> | 48 | <li class="bold border-bottom hide-on-med-and-down"> |
49 | <a class="waves-effect collapsible-header" href="{{ entry.url|e }}"> | 49 | <a class="waves-effect collapsible-header" href="{{ entry.url|e }}"> |
50 | <i class="material-icons small">public</i> | 50 | <i class="material-icons small">link</i> |
51 | <span>{{ 'entry.view.left_menu.view_original_article'|trans }}</span> | 51 | <span>{{ 'entry.view.left_menu.view_original_article'|trans }}</span> |
52 | </a> | 52 | </a> |
53 | <div class="collapsible-body"></div> | 53 | <div class="collapsible-body"></div> |
@@ -106,14 +106,12 @@ | |||
106 | <ul> | 106 | <ul> |
107 | {% if craue_setting('share_public') %} | 107 | {% if craue_setting('share_public') %} |
108 | <li> | 108 | <li> |
109 | <a href="{{ path('share', {'id': entry.id }) }}" target="_blank" title="{{ 'entry.view.left_menu.public_link'|trans }}"> | 109 | <a href="{{ path('share', {'id': entry.id }) }}" target="_blank" title="{{ 'entry.view.left_menu.public_link'|trans }}" class="tool icon icon-eye"> |
110 | <i class="material-icons">link</i> | ||
111 | <span>{{ 'entry.view.left_menu.public_link'|trans }}</span> | 110 | <span>{{ 'entry.view.left_menu.public_link'|trans }}</span> |
112 | </a> | 111 | </a> |
113 | </li> | 112 | </li> |
114 | <li> | 113 | <li> |
115 | <a href="{{ path('delete_share', {'id': entry.id }) }}" class="tool" title="{{ 'entry.view.left_menu.delete_public_link'|trans }}"> | 114 | <a href="{{ path('delete_share', {'id': entry.id }) }}" title="{{ 'entry.view.left_menu.delete_public_link'|trans }}" class="tool icon icon-no-eye"> |
116 | <i class="material-icons">remove_circle</i> | ||
117 | <span>{{ 'entry.view.left_menu.delete_public_link'|trans }}</span> | 115 | <span>{{ 'entry.view.left_menu.delete_public_link'|trans }}</span> |
118 | </a> | 116 | </a> |
119 | </li> | 117 | </li> |
@@ -128,21 +126,21 @@ | |||
128 | {% if craue_setting('share_shaarli') %} | 126 | {% if craue_setting('share_shaarli') %} |
129 | <li> | 127 | <li> |
130 | <a href="{{ craue_setting('shaarli_url') }}/index.php?post={{ entry.url|url_encode }}&title={{ entry.title|url_encode }}" target="_blank" class="tool icon-image icon-image--shaarli" title="shaarli"> | 128 | <a href="{{ craue_setting('shaarli_url') }}/index.php?post={{ entry.url|url_encode }}&title={{ entry.title|url_encode }}" target="_blank" class="tool icon-image icon-image--shaarli" title="shaarli"> |
131 | shaarli | 129 | <span>shaarli</span> |
132 | </a> | 130 | </a> |
133 | </li> | 131 | </li> |
134 | {% endif %} | 132 | {% endif %} |
135 | {% if craue_setting('share_diaspora') %} | 133 | {% if craue_setting('share_diaspora') %} |
136 | <li> | 134 | <li> |
137 | <a href="{{ craue_setting('diaspora_url') }}/bookmarklet?url={{ entry.url|url_encode }}&title={{ entry.title|url_encode }}¬es=&v=1&noui=1&jump=doclose" target="_blank" class="tool diaspora icon-image icon-image--diaspora" title="diaspora"> | 135 | <a href="{{ craue_setting('diaspora_url') }}/bookmarklet?url={{ entry.url|url_encode }}&title={{ entry.title|url_encode }}¬es=&v=1&noui=1&jump=doclose" target="_blank" class="tool diaspora icon-image icon-image--diaspora" title="diaspora"> |
138 | diaspora* | 136 | <span>diaspora*</span> |
139 | </a> | 137 | </a> |
140 | </li> | 138 | </li> |
141 | {% endif %} | 139 | {% endif %} |
142 | {% if craue_setting('carrot') %} | 140 | {% if craue_setting('carrot') %} |
143 | <li> | 141 | <li> |
144 | <a href="https://secure.carrot.org/GiveAndGetBack.do?url={{ entry.url|url_encode }}&title={{ entry.title|url_encode }}" target="_blank" title="carrot" class="tool carrot icon-image icon-image--carrot"> | 142 | <a href="https://secure.carrot.org/GiveAndGetBack.do?url={{ entry.url|url_encode }}&title={{ entry.title|url_encode }}" target="_blank" title="carrot" class="tool carrot icon-image icon-image--carrot"> |
145 | Carrot | 143 | <span>Carrot</span> |
146 | </a> | 144 | </a> |
147 | </li> | 145 | </li> |
148 | {% endif %} | 146 | {% endif %} |