index.tpl

来自「用php编写的一个BBS 小程序」· TPL 代码 · 共 33 行

TPL
33
字号
<{include file="header.tpl"}>
  <tr>
    <td align="center" valign="top" style="padding-top:5px">
      <table class="table2" width="95%" height="22">
        <tr>
          <td valign="top"><{$name}></td>
        </tr>
      </table>
      <table class="table2" width="100%">
<{foreach from=$bunch item=curBunch key=bunchKey}>
        <tr>
          <td align="center" style="padding-bottom:10px">
            <table class="table1" width="95%">
              <tr align="center" bgcolor="#3980d2">
                <td class="td1" width="65%" align="left" style="padding:5px" onmouseover="this.style.background='#4891e6'" onmouseout="this.style.background='#3980d2'"><font color="#d9e1f6">&nbsp;<{$curBunch.name}></font></td>
                <td class="td1" width="20%" style="padding:5px" onmouseover="this.style.background='#4891e6'" onmouseout="this.style.background='#3980d2'"><font color="#d9e1f6">主题/回复</font></td>
                <td class="td1" width="15%" style="padding:5px" onmouseover="this.style.background='#4891e6'" onmouseout="this.style.background='#3980d2'"><font color="#d9e1f6">版主</font></td>
              </tr>
    <{foreach from=$forum[$bunchKey].face item=curForum key=forumKey}>
          <tr align="center" bgcolor="#eef2fd">
                <td class="td1" align="left" style="padding:5px;line-height:20px" onmouseover="this.style.cursor='hand';this.style.background='#f6f8ff'" onmouseout="this.style.cursor='default';this.style.background='#eef2fd'" onclick="window.location.href='<{if $rewrite eq 1}>forum-<{$curForum.id}>.html<{else}>forum.php?id=<{$curForum.id}><{/if}>'"><a href="<{if $rewrite eq 1}>forum-<{$curForum.id}>.html<{else}>forum.php?id=<{$curForum.id}><{/if}>">〖<{$curForum.name}>〗</a><br />&nbsp;<{if $curForum.threads gt 0}><a href="<{if $rewrite eq 1}>thread-<{$curForum.tid}>.html<{else}>thread.php?id=<{$curForum.tid}><{/if}>" title="<{$curForum.title}>"><{$curForum.title}></a>&nbsp;by&nbsp;<{if $curForum.uid gt 0}><a href="javascript:void(0)" onmousedown="showDivAdv(2, true, <{$curForum.uid}>, -3)"><{$curForum.username}></a><{else}><{$curForum.username}><{/if}>&nbsp;at&nbsp;<{$curForum.date|date_format:"%Y-%m-%d %H:%M:%S"}><{else}>暂无任何主题<{/if}><br /></td>
                <td class="td1" style="padding:5px" onmouseover="this.style.background='#f6f8ff'" onmouseout="this.style.background='#eef2fd'"><{$curForum.threads}>/<{$curForum.posts}></td>
                <td class="td1" style="padding:5px" onmouseover="this.style.background='#f6f8ff'" onmouseout="this.style.background='#eef2fd'"><{$forum[$bunchKey].adminList}></td>
              </tr>
    <{/foreach}>
        </table>
          </td>
        </tr>
<{/foreach}>
      </table>
    </td>
  </tr>
<{include file="footer.tpl"}>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?