| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <include file="block/header_xm" />
- <link rel="stylesheet" type="text/css" href="__TMPL__/static/css/know-content.css"/>
- <link rel="stylesheet" type="text/css" href="__TMPL__/static/css/know.css"/>
- <style>
- .know_show li a:link, .know_show li a:visited, .know_show li a:active{
- color:#fff;
- }
- .m3l{
- width:1200px;
- border:none;
- }
- </style>
- <!-- nav -->
- <include file="block/nav" />
- <!-- 面包屑 -->
- <div class="container crumbs">当前位置:
- <a href="/" target="">网站首页</a> >
- <span>问答</span>
- </div>
- <!-- 排行榜列表 -->
- <div class="container phb-content">
- <div class="m m3">
- <div class="m3l">
- <!--<div class="head-txt" style="margin-top: 20px;"><strong>精彩推荐</strong></div>-->
- <div class="know-list"><table cellpadding="0" cellspacing="0" width="100%">
- <foreach name="lists" id="vo">
- <tr>
- <td class="kl-avatar"><a href="/know/detail/{$vo.id}/">
- <!--<img src="__TMPL__/static/images/show.php" width="20" height="20" title="rcgl" alt=""/>-->
- </a></td>
- <td class="kl-title"><div><a href="/know/detail/{$vo.id}/" title="{$vo.title}">{$vo.title}</a></div></td>
- <td class="kl-answer">0回答</td>
- <td class="kl-process" width="50" align="center"><img src="__TMPL__/static/images/know_1.gif" title="待解决"/></td>
- <td class="kl-date">{:date('m-d H:i:s',$vo.create_time)}</td>
- </tr>
- </foreach>
- </table>
- </div>
- </table>
- </div>
- </div>
- </div>
- <include file="block/footer" />
|