37 lines
1.3 KiB
Handlebars
37 lines
1.3 KiB
Handlebars
<div class="media">
|
|
{{#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}}
|
|
|
|
<a href="{{sizes.raw}}" class="thumbnail img-thumbnail photo-link gallery-picture">
|
|
<img src="{{sizes.large}}" class="photo big-photo">
|
|
</a>
|
|
|
|
<div class="card-footer">
|
|
<div class="footer-container">
|
|
{{#if status_message}}
|
|
<a href="{{urlTo "post" status_message.id}}">
|
|
<time class="timeago" data-original-title="{{{localTime created_at}}}" datetime="{{created_at}}" />
|
|
</a>
|
|
{{else}}
|
|
<time class="timeago" data-original-title="{{{localTime created_at}}}" datetime="{{created_at}}" />
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
</div>
|