中泽后端接口
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

articleDetails.ftl 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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>${article.title!'文章详情'}</title>
  8. <meta name="description" content="${article.digest!''}"/>
  9. <meta name="Keywords" content="${article.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="../articleDetails/index.css" rel="stylesheet">
  16. </head>
  17. <body>
  18. <#include "./detail/header.ftl" parse=true encoding="utf-8">
  19. <div class="main">
  20. <div class="content">
  21. <div class="canshu" data-path="${type}" data-uuid="${article.uuid}"></div>
  22. <div class="detail_head">
  23. <div class="head_left">
  24. <div>发稿时间:${article.createTime?string('yyyy-MM-dd HH:mm:ss')}</div>
  25. <div>来源:${article.source}</div>
  26. <div class="nums">浏览次数:${article.vievNum!'0'}</div>
  27. </div>
  28. </div>
  29. <div class="detail_head2">
  30. <div class="head_left">
  31. <div>发稿时间:${article.createTime?string('yyyy-MM-dd HH:mm:ss')}</div>
  32. <div>来源:${article.source}</div>
  33. </div>
  34. <div class="head_right">
  35. <div class="nums">浏览次数:${article.vievNum!'0'}</div>
  36. </div>
  37. </div>
  38. <div class="detail_title">
  39. <div class="title">${article.title}</div>
  40. </div>
  41. ${article.content}
  42. <#if otherNews??>
  43. <div class="detail_footer">
  44. <#if otherNews?keys?seq_contains("upNew")>
  45. <a href="./${otherNews.upNew.uuid}.html">上一篇:${otherNews.upNew.title}</a>
  46. </#if>
  47. <#if otherNews?keys?seq_contains("nextNew")>
  48. <a href="./${otherNews.nextNew.uuid}.html">下一篇:${otherNews.nextNew.title}</a>
  49. </#if>
  50. </div>
  51. </#if>
  52. </div>
  53. </div>
  54. <#include "./detail/footer.ftl" parse=true encoding="utf-8">
  55. <script defer="defer" src="../runtime/index.js"></script>
  56. <script defer="defer" src="../vendor/index.js"></script>
  57. <script defer="defer" src="../common/index.js"></script>
  58. <script defer="defer" src="../articleDetails/index.js"></script>
  59. </body>
  60. </html>