Conflicts: Gemfile Gemfile.lock app/assets/stylesheets/application.css.sass app/assets/templates/comment_tpl.jst.hbs app/assets/templates/stream-element_tpl.jst.hbs app/helpers/aspects_helper.rb app/helpers/contacts_helper.rb app/views/aspects/_aspect_listings.haml app/views/aspects/toggle_contact_visibility.js.erb app/views/contacts/_aspect_listings.haml app/views/layouts/_header.html.haml app/views/shared/_footer.html.haml app/views/tags/_followed_tags_listings.haml
27 lines
669 B
Handlebars
27 lines
669 B
Handlebars
<div class="img">
|
|
{{#linkToPerson author}}
|
|
{{{personImage this "small" "small"}}}
|
|
{{/linkToPerson}}
|
|
</div>
|
|
|
|
<div class="bd">
|
|
{{#if canRemove}}
|
|
<div class="controls">
|
|
<a href="#" class="delete comment_delete" title="{{t "delete"}}">
|
|
<div alt="Deletelabel" class="icons-deletelabel" />
|
|
<a/>
|
|
</div>
|
|
{{/if}}
|
|
|
|
<a href="/people/{{author.guid}}" class="author author-name {{hovercardable this}}">
|
|
{{author.name}}
|
|
</a>
|
|
|
|
<div class="collapsible comment-content">
|
|
{{{text}}}
|
|
</div>
|
|
|
|
<div class="info">
|
|
<time class="timeago" data-original-title="{{{localTime created_at}}}" datetime="{{created_at}}"/>
|
|
</div>
|
|
</div>
|