add more images to use handlebars imageUrl helper

This commit is contained in:
Maxwell Salzberg 2012-02-10 13:44:45 -08:00
parent d6fd5cdb20
commit 5ea6648550
2 changed files with 4 additions and 4 deletions

View file

@ -2,7 +2,7 @@
<div class="comment"> <div class="comment">
<div class="media"> <div class="media">
<span class="img"> <span class="img">
<img alt="Heart" src="/images/icons/pin.png" /> <img alt="Heart" src="{{imageUrl "/images/icons/pin.png"}}" />
</span> </span>
<div class="bd"> <div class="bd">

View file

@ -4,14 +4,14 @@
<div class="controls"> <div class="controls">
{{#if authorIsCurrentUser}} {{#if authorIsCurrentUser}}
<a href="#" rel=nofollow> <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>
<a href="#" rel=nofollow> <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> </a>
{{else}} {{else}}
<a href="#" rel=nofollow> <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> </a>
{{/if}} {{/if}}
</div> </div>