mirror of
https://github.com/Hopiu/postal.js.git
synced 2026-04-16 13:00:58 +00:00
14 lines
No EOL
387 B
HTML
14 lines
No EOL
387 B
HTML
<fieldset>
|
|
<legend><span>Top Mention-ers:</span></legend>
|
|
<div class="scrollableDiv">
|
|
<table cellspacing="0">
|
|
<% _.each( mentioners, function( mentioner ) { %>
|
|
<tr>
|
|
<td><img class="images" src="<%= mentioner.image %>"/></td>
|
|
<td><span><%= mentioner.user %></span></td>
|
|
<td><span><%= mentioner.count %></span></td>
|
|
</tr>
|
|
<% }) %>
|
|
</table>
|
|
</div>
|
|
</fieldset> |