aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2016-10-04 15:12:48 +0200
committerThomas Citharel <tcit@tcit.fr>2016-10-04 15:12:48 +0200
commitf733d8aaa329cc2115d0c94ffe9a0cedf98759b2 (patch)
treeec5a16041d5f5fc1639b2a871e2aa6ede4d07f21 /src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig
parent3e85e91159c506586970e00e3614679879342de9 (diff)
downloadwallabag-f733d8aaa329cc2115d0c94ffe9a0cedf98759b2.tar.gz
wallabag-f733d8aaa329cc2115d0c94ffe9a0cedf98759b2.tar.zst
wallabag-f733d8aaa329cc2115d0c94ffe9a0cedf98759b2.zip
Fix icon position
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig9
1 files changed, 6 insertions, 3 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 0a04e972..d52ab01c 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
@@ -125,21 +125,24 @@
125 {% endif %} 125 {% endif %}
126 {% if craue_setting('share_shaarli') %} 126 {% if craue_setting('share_shaarli') %}
127 <li> 127 <li>
128 <a href="{{ craue_setting('shaarli_url') }}/index.php?post={{ entry.url|url_encode }}&amp;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 }}&amp;title={{ entry.title|url_encode }}" target="_blank">
129 <i class="tool icon-image icon-image--shaarli" title="shaarli"></i>
129 <span>shaarli</span> 130 <span>shaarli</span>
130 </a> 131 </a>
131 </li> 132 </li>
132 {% endif %} 133 {% endif %}
133 {% if craue_setting('share_diaspora') %} 134 {% if craue_setting('share_diaspora') %}
134 <li> 135 <li>
135 <a href="{{ craue_setting('diaspora_url') }}/bookmarklet?url={{ entry.url|url_encode }}&title={{ entry.title|url_encode }}&notes=&v=1&noui=1&jump=doclose" target="_blank" class="tool icon-image icon-image--diaspora" title="diaspora"> 136 <a href="{{ craue_setting('diaspora_url') }}/bookmarklet?url={{ entry.url|url_encode }}&title={{ entry.title|url_encode }}&notes=&v=1&noui=1&jump=doclose" target="_blank">
137 <i class="tool icon-image icon-image--diaspora" title="diaspora"></i>
136 <span>diaspora*</span> 138 <span>diaspora*</span>
137 </a> 139 </a>
138 </li> 140 </li>
139 {% endif %} 141 {% endif %}
140 {% if craue_setting('carrot') %} 142 {% if craue_setting('carrot') %}
141 <li> 143 <li>
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 icon-image icon-image--carrot"> 144 <a href="https://secure.carrot.org/GiveAndGetBack.do?url={{ entry.url|url_encode }}&title={{ entry.title|url_encode }}" target="_blank" title="carrot">
145 <i class="tool icon-image icon-image--carrot"></i>
143 <span>Carrot</span> 146 <span>Carrot</span>
144 </a> 147 </a>
145 </li> 148 </li>