discourse/app/views/email/_post.html.erb
2015-03-23 14:12:11 -04:00

21 lines
691 B
Plaintext

<table class='post-wrapper'>
<tbody>
<tr>
<td class='user-avatar'>
<img src="<%= post.user.small_avatar_url%>" title="<%= post.user.username%>">
</td>
<td>
<a class="username" href="<%=Discourse.base_url%>/users/<%= post.user.username_lower%>" target="_blank"><%= post.user.username %></a>
<%- if post.user.title.present? %>
<span class='user-title'><%= post.user.title %></span>
<% end %>
<br>
<span class='notification-date'><%= l post.created_at, format: :short_no_year %></span>
</td>
</tr>
<tr>
<td class='body'><%= format_for_email(post.cooked) %></td>
</tr>
</tbody>
</table>