mirror of
https://github.com/cnodejs/nodeclub.git
synced 2025-12-08 19:55:55 +00:00
31 lines
691 B
HTML
31 lines
691 B
HTML
<%- partial('sidebar') %>
|
|
|
|
<div id='content'>
|
|
<div class='panel'>
|
|
<div class='header'>
|
|
<ul class='breadcrumb'>
|
|
<li><a href='/'>主页</a><span class='divider'>/</span></li>
|
|
<li class='active'>Top100 积分榜</li>
|
|
</ul>
|
|
</div>
|
|
<div class='inner'>
|
|
<% if(locals.users && users.length > 0){ %>
|
|
<table class='table table-condensed table-striped'>
|
|
<thead>
|
|
<th>#</th>
|
|
<th>用户名</th>
|
|
<th>粉丝数</th>
|
|
<th>文章数</th>
|
|
<th>积分</th>
|
|
</thead>
|
|
<tbody>
|
|
<%- partial('user/top100_user',{collection:users,as:'user'}) %>
|
|
</tbody>
|
|
</table>
|
|
<% }else{ %>
|
|
<p>还没有用户</p>
|
|
<% } %>
|
|
</div>
|
|
</div>
|
|
</div>
|