中泽后端接口
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.

newsDetail.ftl 1.1KB

123456789101112131415161718192021222324252627282930
  1. <!doctype html>
  2. <html lang="cn">
  3. <head>
  4. <meta charset="utf-8"/>
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
  6. <title>新闻资讯</title>
  7. <meta name="description" content=""/>
  8. <meta name="Keywords" content=""/>
  9. <meta content="initial-scale=1,user-scalable=no,maximum-scale=1,width=device-width" name="viewport"/>
  10. <link href="../static/css/swiper-bundle.min.css" rel="stylesheet"/>
  11. <link rel="stylesheet" href="../static/lib/animate.min.css">
  12. <script src="../static/lib/wow.min.js"></script>
  13. <link href="../common/index.css" rel="stylesheet">
  14. <link href="../newsDetail/index.css" rel="stylesheet">
  15. </head>
  16. <body>
  17. <#include "./detail/header.ftl" parse=true encoding="utf-8">
  18. <div class="main">
  19. <div class="content">
  20. <div class="detail_title">
  21. <div class="title">${news.title}</div>
  22. <div class="date">${news.date?string("dd.MM.yyyy")}</div>
  23. </div>
  24. ${news.content}
  25. </div>
  26. </div>
  27. <#include "./detail/footer.ftl" parse=true encoding="utf-8">
  28. <#include "./detail/bottomBar.ftl" parse=true encoding="utf-8">
  29. </body>
  30. </html>