36 lines
825 B
Text
36 lines
825 B
Text
<div class="reshare">
|
|
|
|
<% if(root) { %>
|
|
|
|
<a href="/people/<%= root.author.id %>">
|
|
<img src="<%= root.author.avatar.small %>" class="avatar" data-person-id="<%= root.author.id %>"/>
|
|
</a>
|
|
|
|
<div class="content">
|
|
<div class="post_initial_info">
|
|
<span class="from">
|
|
<a href="/people/<%= root.author.id %>">
|
|
<%= root.author.name %>
|
|
</a>
|
|
</span>
|
|
<span class="details">
|
|
-
|
|
<a href="/posts/<%= root.id %>">
|
|
<time class="timeago" datetime="<%= root.created_at %>"/>
|
|
</a>
|
|
</span>
|
|
</div>
|
|
|
|
<!-- duplicate from statusmessage partial -->
|
|
<p>
|
|
<%= root.text %>
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<% } else { %>
|
|
<p>
|
|
Original post deleted by author.
|
|
</p>
|
|
<% } %>
|
|
</div>
|