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/embedded_post.js.handlebars
2013-02-05 14:16:51 -05:00

18 lines
552 B
Handlebars

{{#with view.content}}
<div class='row'>
<div class='topic-meta-data span2'>
<div class='contents'>
<div>
<a href='/users/{{unbound username}}' class='excerptable' data-excerpt-position="right" data-excerpt-size="small">{{avatar this imageSize="small"}}</a>
</div>
<h5><a href='/users/{{unbound username}}'>{{username}}</a></h5>
<span class='post-date'>{{date created_at}}</span>
</div>
</div>
<div class='span11 topic-body'>
{{{unbound cooked}}}
</div>
</div>
{{/with}}