news_list.html 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. {if $mayimobile[mobileuri]}
  6. <link rel="alternate" href="{$mayimobile[mobileuri]}" media="handheld" type="application/vnd.wap.xhtml+xml">
  7. <meta http-equiv="mobile-agent" content="format=html5; url={$mayimobile[mobileuri]}">
  8. <meta http-equiv="mobile-agent" content="format=wml; url={$mayimobile[mobileuri]}">
  9. <meta http-equiv="mobile-agent" content="format=xhtml; url={$mayimobile[mobileuri]}">
  10. {/if}
  11. <title>{$page_title}</title>
  12. <meta name="keywords" content="{$channel[keywords]}" />
  13. <meta name="description" content="{$channel[description]}" />
  14. <link rel="shortcut icon" href="{$mymps_global[SiteUrl]}/favicon.ico" />
  15. <link rel="stylesheet" href="{$mymps_global[SiteUrl]}/template/default/css/global.css" />
  16. <link rel="stylesheet" href="{$mymps_global[SiteUrl]}/template/default/css/style.css" />
  17. <link rel="stylesheet" href="{$mymps_global[SiteUrl]}/template/default/css/newstyle.css" />
  18. <link rel="stylesheet" href="{$mymps_global[SiteUrl]}/template/default/css/pagination2.css" />
  19. <script src="{$mymps_global[SiteUrl]}/template/default/js/global.js" type="text/javascript"></script>
  20. <script src="{$mymps_global[SiteUrl]}/template/default/js/jquery-1.11.min.js" type="text/javascript"></script>
  21. </head>
  22. <body class="{$mymps_global[cfg_tpl_dir]} full bodybg{$mymps_global[cfg_tpl_dir]}{$mymps_global[bodybg]}">
  23. {mytemplate inc_head}
  24. <div class="clear"></div>
  25. <div class="body1000">
  26. <div class="location">{$location}</div>
  27. <div class="clear"></div>
  28. <div class="column">
  29. <div class="col1">
  30. <div class="list_module">
  31. <div class="catename"><span>{$channel[catname]}</span></div>
  32. <div class="category">
  33. <ul class="subcls schitem">
  34. <!--{loop $cat_list $mymps}-->
  35. <li {if $mymps[catid] == $channel[catid]}class='thiscls'{/if}><a href="{$mymps[uri]}">全部</a></li>
  36. <!--{loop $mymps[children] $w}-->
  37. <li {if $w[catid] == $channel[catid]}class='thiscls'{/if}><a href="{$w[uri]}">{$w[catname]}</a></li>
  38. <!--{/loop}-->
  39. <!--{/loop}-->
  40. </ul>
  41. </div>
  42. <div class="clear"></div>
  43. <div class="nowlist">
  44. <ul>
  45. <!--{loop $news $mymps}-->
  46. <li>
  47. <span class="imgpath"><a href="{$mymps[uri]}" target="_blank"><img border="0" src="{$mymps[imgpath]}"></a></span>
  48. <span class="title">
  49. <a href="{$mymps[uri]}" class="title" target="_blank" {if $mymps[iscommend] == 1}style="color:red"{/if}>{$mymps[title]}</a>
  50. <br><font color="#666">{echo cutstr($mymps[content],'200')}</font>
  51. <br><font color="#999">{echo GetTime($mymps[begintime],'y-m-d')}</font>
  52. </span>
  53. </li>
  54. <!--{/loop}-->
  55. </ul>
  56. </div>
  57. <div class="pagination2">{$pageview}</div>
  58. </div>
  59. </div>
  60. {mytemplate news_right}
  61. </div>
  62. <div class="clear"></div>
  63. {mytemplate inc_foot}
  64. </div>
  65. </body>
  66. </html>