mirror of
https://github.com/Hopiu/postal.js.git
synced 2026-04-04 23:30:32 +00:00
14 lines
No EOL
375 B
HTML
14 lines
No EOL
375 B
HTML
<fieldset>
|
|
<legend><span>Top Mentioned:</span></legend>
|
|
<div class="scrollableDiv">
|
|
<table cellspacing="0">
|
|
<% _.each( mentions, function( mention ) { %>
|
|
<tr>
|
|
<td><img class="images" src="<%= mention.image %>"/></td>
|
|
<td><span><%= mention.user %></span></td>
|
|
<td><span><%= mention.count %></span></td>
|
|
</tr>
|
|
<% }) %>
|
|
</table>
|
|
</div>
|
|
</fieldset> |