fwms-list.html 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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}/syrc/css/ly_html.css">
  7. <link rel="stylesheet" type="text/css" href="${resPath}/syrc/css/syrc-body.css">
  8. <link rel="stylesheet" type="text/css" href="${resPath}/syrc/css/syrc-page.css">
  9. <script src="${resPath}/syrc/js/jquery-1.7.2.min.js"></script>
  10. <script src="${resPath}/syrc/js/TL_Tab.js"></script>
  11. <script src="${resPath}/syrc/js/TL_PC_Slider.js"></script>
  12. </head>
  13. <style>
  14. .fy .pag li a {width: auto;float: none;color: #333;}
  15. .fy .pag {
  16. text-align: center;
  17. height: 20px;
  18. line-height: 20px;
  19. clear: both;
  20. float: none;
  21. padding: 0px;
  22. }
  23. .fy .pag li {
  24. text-align: center;
  25. margin: 0px 2px;
  26. padding: 0px 8px;
  27. height: 20px;
  28. line-height: 20px;
  29. text-decoration: none;
  30. display: inline-block;
  31. border: 1px solid #318ddc;
  32. width: auto;
  33. }
  34. .fy .pag .current {
  35. background-color: #318ddc;
  36. }
  37. </style>
  38. <body>
  39. <!--头部开始-->
  40. @includeFileTemplate("/www/syrc/include/header.html",{"current":"index"}){}
  41. <!--头部结束-->
  42. <!--内容开始-->
  43. <div class="contentbox">
  44. <!--当前位置开始-->
  45. <p class="rsj_dqwzbox">
  46. <#cms_site_pos site="${site}" category="${category}" var="bean">
  47. 当前位置:
  48. ${bean.baseURL}
  49. >>
  50. @for(location in bean.locations){
  51. ${location.categoryName}
  52. @if(!locationLP.last){
  53. >>
  54. @}
  55. @}
  56. </#cms_site_pos></p>
  57. <div class="clear"></div>
  58. <div class="all_title"><i></i><a target="_blank">${category.categoryName}</a></div>
  59. <#cms_category categoryId="${category.categoryId}" isParent="1" var="bean">
  60. <ul class="img_list clearfix">
  61. <#cms_content_page siteId="${site.siteId!}" titleLen="66" page="${page!}" var="content">
  62. <li>
  63. <a target="_blank" href="${content.url!}"><img src="${content.thumb!}"/></a>
  64. <p><a target="_blank" href="${content.url!}">${content.title!}</a></p>
  65. </li>
  66. </#cms_content_page>
  67. </ul>
  68. <!--分页开始-->
  69. <div id="fy" name="fy" class="fy">
  70. <ul class="pag">
  71. <#cms_pagination siteId="${site.siteId}" categoryId="${category.categoryId}" page="${page}" moreNum="6" var="page" >
  72. <li>${page.first}</li>
  73. @for(change in page.changePage){
  74. @if(!change.isLink){
  75. @if(change.isMore){
  76. <li>${change.value!}</li>
  77. @}else{
  78. <li class="current">${change.value!}</li>
  79. @}
  80. @}else{
  81. <li> ${change.url!}</li>
  82. @}
  83. @}
  84. <li>${page.next}</li>
  85. </#cms_pagination>
  86. </ul>
  87. </div>
  88. <!--分页结束-->
  89. </div>
  90. <!--内容结束-->
  91. </#cms_category>
  92. <!--底部开始-->
  93. @includeFileTemplate("/www/syrc/include/footer.html",{"current":"index"}){}
  94. <!--底部结束-->
  95. </body>
  96. </html>