This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/templates/excerpt/post.js.handlebars
2013-02-05 14:16:51 -05:00

22 lines
736 B
Handlebars

<div class='image'>
{{avatar view imageSize="large"}}
</div>
<div class='contents'>
{{{unbound view.excerpt}}}
<div class='info'>{{unbound view.created_at}}</div>
</div>
<footer class='button-row'>
{{#if view.muted}}
<a href='#' {{action unmute target="view"}} class='btn btn-small'>{{i18n unmute}}</a>
{{else}}
<a href='#' {{action mute target="view"}} class='btn btn-small'>{{i18n mute}}</a>
{{/if}}
{{#if view.has_multiple_posts}}
{{#if view.last_post_url}}
<a href='{{unbound view.last_post_url}}' class='btn btn-small'>{{i18n last_post}}</a>
{{else}}
<a href='{{unbound view.first_post_url}}' class='btn btn-small'>{{i18n first_post}}</a>
{{/if}}
{{/if}}
</footer>