中泽后端接口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

socialResponsibility.ftl 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <#--社会责任-->
  2. <!doctype html>
  3. <html lang="cn">
  4. <head>
  5. <meta charset="utf-8"/>
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
  7. <title>${TDK.title!'社会责任'}</title>
  8. <meta name="description" content="${TDK.digest!''}"/>
  9. <meta name="Keywords" content="${TDK.key!''}"/>
  10. <meta content="initial-scale=1,user-scalable=no,maximum-scale=1,width=device-width" name="viewport"/>
  11. <link href="./static/css/swiper-bundle.min.css" rel="stylesheet"/>
  12. <link rel="stylesheet" href="./static/lib/animate.min.css">
  13. <script src="./static/lib/wow.min.js"></script>
  14. <link href="./common/index.css" rel="stylesheet">
  15. <link href="./socialResponsibility/index.css" rel="stylesheet">
  16. </head>
  17. <body>
  18. <#include "./header.ftl" parse=true encoding="utf-8">
  19. <div class="main">
  20. <div class="wow fadeInUp con"><img class="lazy" data-src="./static/images/partyBuilding/socialResponsibility.jpg"
  21. data-srcm="./static/images/partyBuilding/socialResponsibilitym.jpg" alt=""/>
  22. <div class="conDiv">
  23. <div class="title">社会责任</div>
  24. <div class="text">
  25. 自成立以来,中泽集团不断发展壮大,集团和各级企业在致力于区域经济发展和行业振兴的同时,始终不忘回报社会,用实际行动配合各级政府和组织,主动参与社会实践和公益活动,妥善解决就业问题,热心助力慈善事业,积极投入抢险救灾,为建设和谐社会做出了积极的贡献,彰显了民营企业的社会责任与时代担当,产生了良好的社会声誉。
  26. </div>
  27. </div>
  28. </div>
  29. <div class="wow fadeInUp news_ul">
  30. <div class="news_list">
  31. <#list srList as sr>
  32. <div class="news_li">
  33. <div class="li_left">
  34. <div class="timerData">${sr.day}</div>
  35. <div>${sr.year?substring(sr.year?length - 2)}-${sr.month}</div>
  36. </div>
  37. <a class="li_cont" href="./socialResponDetail/${sr.uuid}.html">
  38. <div>${sr.title}</div>
  39. <div>${sr.digest!""}...</div>
  40. </a>
  41. </div>
  42. </#list>
  43. </div>
  44. <div class="news_paging">
  45. <#-- 判断是否有上一页-->
  46. <#if (currentPage > 1)>
  47. <a id="previousPage" href="socialResponsibility${currentPage-1}.html" class="previousPage">
  48. <span class="icon iconfont icon-jiantou"></span>
  49. </a>
  50. </#if>
  51. <div id="paging" style="display: flex;align-items: center;">
  52. <#-- 当前页大于5,显示1和... -->
  53. <#if (currentPage > 5)>
  54. <#assign start=currentPage-2>
  55. <a class="pageNum" href="socialResponsibility1.html">1</a>
  56. <a class="pageNum pageNums">...</a>
  57. <#else >
  58. <#assign start=1>
  59. </#if>
  60. <#-- 显示当前页附近的页-->
  61. <#assign end=currentPage+2>
  62. <#if (end>totalPage)>
  63. <#assign end = totalPage>
  64. </#if>
  65. <#list start..end as index>
  66. <#if index == currentPage>
  67. <a class="pageNum pageNumActive" href="socialResponsibility${index}.html">${index}</a>
  68. <#else>
  69. <a class="pageNum" href="socialResponsibility${index}.html">${index}</a>
  70. </#if>
  71. </#list>
  72. <#-- 到最后一页相差超过5,显示...-->
  73. <#if ((totalPage-currentPage)>5)>
  74. <a class="pageNum pageNums">...</a>
  75. <a class="pageNum" href="socialResponsibility${totalPage}.html">${totalPage}</a>
  76. </#if>
  77. </div>
  78. <#-- 判断是否有下一页-->
  79. <#if (currentPage < totalPage)>
  80. <a id="nextPage" href="socialResponsibility${currentPage+1}.html" class="nextPage">
  81. <span class="icon iconfont icon-jiantou"></span>
  82. </a>
  83. </#if>
  84. </div>
  85. </div>
  86. </div>
  87. <#include "./footer.ftl" parse=true encoding="utf-8">
  88. <script defer="defer" src="./runtime/index.js"></script>
  89. <script defer="defer" src="./vendor/index.js"></script>
  90. <script defer="defer" src="./common/index.js"></script>
  91. <script defer="defer" src="./socialResponsibility/index.js"></script>
  92. </body>
  93. </html>