mirror of
https://github.com/cnodejs/nodeclub.git
synced 2025-12-08 19:55:55 +00:00
18 lines
545 B
HTML
18 lines
545 B
HTML
<tr>
|
|
<% if (indexInCollection < 20) { %>
|
|
<td><b><%= indexInCollection+1 %></b></td>
|
|
<td>
|
|
<a class='user_avatar' href="/user/<%= user.name %>">
|
|
<img src="<%= user.avatar_url %>" title="<%= user.name %>" />
|
|
</a>
|
|
<span class='sp10'></span>
|
|
<a href='/user/<%= user.name %>'><%= user.name %></a></td>
|
|
<% } else { %>
|
|
<td><%= indexInCollection+1 %></td>
|
|
<td><a href="/user/<%= user.name %>"><%= user.name %></a></td>
|
|
<% } %>
|
|
<td><%= user.follower_count %></td>
|
|
<td><%= user.topic_count %></td>
|
|
<td><%= user.score %></td>
|
|
</tr>
|