29 lines
977 B
Handlebars
29 lines
977 B
Handlebars
<div class="media">
|
|
<div class="bd">
|
|
{{#if loggedIn}}
|
|
<div class="control-icons">
|
|
{{#if authorIsCurrentUser}}
|
|
<a href="#" rel="nofollow" class="delete remove_post" title="{{t "delete"}}">
|
|
<i class="entypo-trash"></i>
|
|
</a>
|
|
{{else}}
|
|
<a href="#" rel="nofollow" data-type="post" class="post_report" title="{{t "report.name"}}">
|
|
<i class="entypo-warning"></i>
|
|
</a>
|
|
<a href="#" rel="nofollow" class="block_user" title="{{t "ignore"}}">
|
|
<i class="entypo-block"></i>
|
|
</a>
|
|
<a href="#" rel="nofollow" class="delete hide_post" title="{{t "stream.hide"}}">
|
|
<i class="entypo-cross"></i>
|
|
</a>
|
|
{{/if}}
|
|
</div>
|
|
{{/if}}
|
|
|
|
<div class="thumbnail img-thumbnail">
|
|
<a href="{{sizes.large}}" class="photo-link gallery-picture">
|
|
<img src="{{sizes.large}}" class="photo big_photo">
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|