news.html 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>${siteTitle!}</title>
  6. <link rel="stylesheet" type="text/css" href="${resPath}/bcrc/css/ly_html.css">
  7. <link rel="stylesheet" type="text/css" href="${resPath}/bcrc/css/bcrc-body.css">
  8. <link rel="stylesheet" type="text/css" href="${resPath}/bcrc/css/bcrc-page.css">
  9. <script src="${resPath}/bcrc/js/jquery-1.7.2.min.js"></script>
  10. <script src="${resPath}/bcrc/js/TL_Tab.js"></script>
  11. <script src="${resPath}/bcrc/js/TL_PC_Slider.js"></script>
  12. </head>
  13. <body>
  14. <div class="contentbig">
  15. <!--头部开始-->
  16. @includeFileTemplate("/www/syrc/include/header.html",{"current":"index"}){}
  17. <!--头部结束-->
  18. <!--内容开始-->
  19. <div class="wz_cont">
  20. <div class="wz_cont_in">
  21. <div class="dqwz">
  22. <#cms_site_pos site="${site}" category="${category}" var="bean">
  23. 当前位置:
  24. ${bean.baseURL}
  25. >>
  26. @for(location in bean.locations){
  27. ${location.categoryName}
  28. @if(!locationLP.last){
  29. >>
  30. @}
  31. @}
  32. </#cms_site_pos>
  33. </div>
  34. <div class="sycon_bg">
  35. <div class="sycon_leftwh news_cont">
  36. <div class="news_title">
  37. <h1 class="sywzy_h2">${content.title}</h1>
  38. <div class="wxx_neirong_times">
  39. <div class="sywzy_xbt">
  40. <span>发布时间:${content.inputdate,dateFormat="yyyy年MM月dd日"}</span> <span>信息来源:${content.author}</span>
  41. <i>浏览次数:${content.viewNum}次</i>
  42. <em>字体:[
  43. <a href="javascript:void(0)" class="icon_fb j-fontBig" title="字号大">大</a>
  44. <a href="javascript:void(0)" class="icon_fm j-fontNormal active" title="字号中">中</a>
  45. <a href="javascript:void(0)" class="icon_fs j-fontSmall" title="字号小">小</a>]
  46. </em>
  47. </div>
  48. </div>
  49. </div>
  50. <div class="sy_wz">
  51. <p>${content.content!}</p>
  52. </div>
  53. </div>
  54. </div>
  55. <script>
  56. $(function(){
  57. $(".icon_fb").on('click',function(){
  58. $(".sy_wz p").css("font-size", "24px");
  59. });
  60. $(".icon_fm").on('click',function(){
  61. $(".sy_wz p").css("font-size", "16px");
  62. });
  63. $(".icon_fs").on('click',function(){
  64. $(".sy_wz p").css("font-size", "14px");
  65. });
  66. });
  67. </script>
  68. </div>
  69. </div>
  70. <!--内容结束-->
  71. <!--底部开始-->
  72. @includeFileTemplate("/www/syrc/include/footer.html",{"current":"index"}){}
  73. <!--底部结束-->
  74. </body>
  75. </html>