| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <link rel="alternate" href="{$mayimobile[mobileuri]}" media="handheld" type="application/vnd.wap.xhtml+xml">
- <meta http-equiv="mobile-agent" content="format=html5; url={$mayimobile[mobileuri]}">
- <meta http-equiv="mobile-agent" content="format=wml; url={$mayimobile[mobileuri]}">
- <meta http-equiv="mobile-agent" content="format=xhtml; url={$mayimobile[mobileuri]}">
- <title>分类信息-{$store[tname]}-{$mymps_global[SiteName]}</title>
- <meta http-equiv="keywords" content="{$store[tname]}发布的信息">
- <meta http-equiv="description" content="{$store[tname]}发布的分类信息">
- <link href="{$mymps_global[SiteUrl]}/template/spaces/store/css/{$store[template]}.css" type="text/css" rel="stylesheet" />
- </head>
- <body>
- {template header}
- <div class="content">
- {template sider}
- <div class="cright">
- <div class="box">
- <div class="tit"><span>分类信息</span></div>
- <div class="con cont_01 cfix">
- <table class="mrw_list">
- <tr>
- <th width="70%" class="list_left">信息标题</th>
- <th class="list_left">所在栏目</th>
- <th class="list_left">发布时间</th>
- </tr>
- {loop $info $mymps}
- <tr>
- <td><a href="{$mymps[uri]}" target="_blank">{$mymps[title]}</a></td>
- <td align="left">{$mymps[catname]}</td>
- <td>{echo GetTime($mymps[begintime],'m-d')}</td>
- </tr>
- {loopelse}
- <tr>
- <td colspan="5">暂无相关记录!</td>
- </tr>
- {/loop}
-
- </table>
- </div>
-
- <div class="clear"></div>
- <div class="pagination" style="margin-left:15px!important;">{$pageview}</div>
- </div>
- </div>
- </div>
- <div class="clear15"></div>
- {template footer}
- </body>
- </html>
|