| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <!--{if $typeid}-->
- <!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" />
- <title>{$typename}-{$store[tname]}-{$mymps_global[SiteName]}</title>
- <meta http-equiv="keywords" content="{$store[tname]}{$typename}">
- <meta http-equiv="description" content="{$store[tname]}{$typename}">
- <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>{$typename}</span></div>
- <div class="con cont_01 cfix">
- <table class="mrw_list">
- <tr>
- <th width="70%" class="list_left">标题</th>
- <th align="left">发布时间</th>
- <th align="left">浏览次数</th>
- </tr>
- {loop $docu $mymps}
- <tr>
- <td><a href="{$mymps[uri]}">{$mymps[title]}</a></td>
- <td align="left">{echo GetTime($mymps[pubtime],'Y-m-d')}</td>
- <td align="left">{$mymps[hit]}次</td>
- </tr>
- {loopelse}
- <tr>
- <td colspan="4">暂无相关记录!</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>
- <!--{elseif $id}-->
- <!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>{$docu[title]}-{$store[tname]}-{$mymps_global[SiteName]}</title>
- <meta http-equiv="keywords" content="{$docu[title]}">
- <meta http-equiv="description" content="{echo cutstr(clear_html($docu[content]),250)}">
- <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>{$typename}</span></div>
- <div class="con cont_01 cfix">
- <div class="kbNewsShow">
- <h1>{$docu[title]}</h1>
- <div class="infoNews">发布者:{$docu[author]} 发布时间:{echo GetTime($docu[pubtime],'Y-m-d')} 来源:{$docu[source]}</div>
- <div class="newsCont">
- {if $docu[imgpath]}<div align=center style="margin:10px auto"><a href="{$docu[imgpath]}" target="_blank"><img src="{$docu[pre_imgpath]}" border="0" alt="点击查看大图"></a> </div>{/if}
- {$docu[content]}
- </div>
-
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="clear15"></div>
- {template footer}
- </body>
- </html>
- <!--{/if}-->
|