| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <!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" />
- {if $mayimobile[mobileuri]}
- <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]}">
- {/if}
- <title>{$page_title}</title>
- <meta name="keywords" content="{$channel[keywords]}" />
- <meta name="description" content="{$channel[description]}" />
- <link rel="shortcut icon" href="{$mymps_global[SiteUrl]}/favicon.ico" />
- <link rel="stylesheet" href="{$mymps_global[SiteUrl]}/template/default/css/global.css" />
- <link rel="stylesheet" href="{$mymps_global[SiteUrl]}/template/default/css/style.css" />
- <link rel="stylesheet" href="{$mymps_global[SiteUrl]}/template/default/css/newstyle.css" />
- <link rel="stylesheet" href="{$mymps_global[SiteUrl]}/template/default/css/pagination2.css" />
- <script src="{$mymps_global[SiteUrl]}/template/default/js/global.js" type="text/javascript"></script>
- <script src="{$mymps_global[SiteUrl]}/template/default/js/jquery-1.11.min.js" type="text/javascript"></script>
- </head>
- <body class="{$mymps_global[cfg_tpl_dir]} full bodybg{$mymps_global[cfg_tpl_dir]}{$mymps_global[bodybg]}">
- {mytemplate inc_head}
- <div class="clear"></div>
- <div class="body1000">
- <div class="location">{$location}</div>
- <div class="clear"></div>
- <div class="column">
- <div class="col1">
- <div class="list_module">
- <div class="catename"><span>{$channel[catname]}</span></div>
- <div class="category">
- <ul class="subcls schitem">
- <!--{loop $cat_list $mymps}-->
- <li {if $mymps[catid] == $channel[catid]}class='thiscls'{/if}><a href="{$mymps[uri]}">全部</a></li>
- <!--{loop $mymps[children] $w}-->
- <li {if $w[catid] == $channel[catid]}class='thiscls'{/if}><a href="{$w[uri]}">{$w[catname]}</a></li>
- <!--{/loop}-->
- <!--{/loop}-->
- </ul>
- </div>
- <div class="clear"></div>
- <div class="nowlist">
- <ul>
- <!--{loop $news $mymps}-->
- <li>
- <span class="imgpath"><a href="{$mymps[uri]}" target="_blank"><img border="0" src="{$mymps[imgpath]}"></a></span>
- <span class="title">
- <a href="{$mymps[uri]}" class="title" target="_blank" {if $mymps[iscommend] == 1}style="color:red"{/if}>{$mymps[title]}</a>
- <br><font color="#666">{echo cutstr($mymps[content],'200')}</font>
- <br><font color="#999">{echo GetTime($mymps[begintime],'y-m-d')}</font>
- </span>
-
- </li>
- <!--{/loop}-->
- </ul>
- </div>
- <div class="pagination2">{$pageview}</div>
- </div>
- </div>
- {mytemplate news_right}
- </div>
- <div class="clear"></div>
- {mytemplate inc_foot}
- </div>
- </body>
- </html>
|