postal.js/example/node/client/js/views/templates/mention-count.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>