OSDN Git Service

#16738 - Remove comment files.
[mulab/XCLite.git] / public_html / modules / user / templates / blocks / user_block_topusers.html
1 <table cellspacing="1" class="outer">
2   <{foreach item=user from=$block.users}>
3   <tr class="<{cycle values="even,odd"}>" valign="middle">
4     <td><{$user.rank}></td>
5     <td align="center">
6       <{if $user.avatar != ""}>
7       <img src="<{$user.avatar}>" alt="" width="32" /><br />
8       <{/if}>
9       <a href="<{$xoops_url}>/userinfo.php?uid=<{$user.id}>"><{$user.name}></a>
10     </td>
11     <td align="center"><{$user.posts}></td>
12   </tr>
13   <{/foreach}>
14 </table>