add more images to use handlebars imageUrl helper
This commit is contained in:
parent
f8ec80b62d
commit
6bc44f6f5a
2 changed files with 4 additions and 4 deletions
|
|
@ -2,7 +2,7 @@
|
|||
<div class="comment">
|
||||
<div class="media">
|
||||
<span class="img">
|
||||
<img alt="Heart" src="/images/icons/pin.png" />
|
||||
<img alt="Heart" src="{{imageUrl "/images/icons/pin.png"}}" />
|
||||
</span>
|
||||
|
||||
<div class="bd">
|
||||
|
|
|
|||
|
|
@ -4,14 +4,14 @@
|
|||
<div class="controls">
|
||||
{{#if authorIsCurrentUser}}
|
||||
<a href="#" rel=nofollow>
|
||||
<img src="/images/icons/ignoreuser.png" alt="Ignoreuser" class="block_user control_icon" title="{{t "ignore"}}" />
|
||||
<img src="{{imageUrl "/images/icons/ignoreuser.png"}}"" alt="Ignoreuser" class="block_user control_icon" title="{{t "ignore"}}" />
|
||||
</a>
|
||||
<a href="#" rel=nofollow>
|
||||
<img src="/images/deletelabel.png" class="delete control_icon hide_post" title="{{t "stream.hide"}}" />
|
||||
<img src="{{imageUrl"/images/deletelabel.png"}}" class="delete control_icon hide_post" title="{{t "stream.hide"}}" />
|
||||
</a>
|
||||
{{else}}
|
||||
<a href="#" rel=nofollow>
|
||||
<img src="/images/deletelabel.png" class="delete control_icon remove_post" title="{{t "delete"}}" />
|
||||
<img src="{{imageUrl "/images/deletelabel.png"}}" class="delete control_icon remove_post" title="{{t "delete"}}" />
|
||||
</a>
|
||||
{{/if}}
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue