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

temporaryProduct.ftl 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  7. <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"/>
  8. <meta name="apple-touch-fullscreen" content="yes">
  9. <meta name="apple-mobile-web-app-capable" content="yes">
  10. <#include "./headerUp.ftl" parse=true encoding="utf-8">
  11. <title>${htmlTitle!"TEMPORARY PRODUCT"}</title>
  12. <meta name="keywords" content=${keywords!""}>
  13. <meta name="description" content=${description!""}>
  14. <meta content="initial-scale=1,user-scalable=no,maximum-scale=1,width=device-width" name="viewport"/>
  15. <link href="/static/css/swiper-bundle.min.css" rel="stylesheet"/>
  16. <link rel="stylesheet" href="/static/css/animate.min.css">
  17. <script src="/static/js/wow.min.js" charset="utf-8"></script>
  18. <link href="/common/index.css" rel="stylesheet">
  19. <link href="/newsDetail/index.css" rel="stylesheet">
  20. </head>
  21. <body>
  22. <#include "./header.ftl" parse=true encoding="utf-8">
  23. <div class="main">
  24. <section class="section banner">
  25. <div class="bgImage">
  26. <picture class="lazy">
  27. <source data-srcset="/static/images/newsDetail/mob/banner.jpg" srcset="" media="(max-width: 800px)"/>
  28. <img class="fit-image" data-src="/static/images/newsDetail/banner.jpg" src=""/></picture>
  29. </div>
  30. </section>
  31. <section class="part">
  32. <div class="date wow fadeInUp">${(news.date)?string('yyyy-MM-dd')}</div>
  33. <div class="title wow fadeInUp">${news.title}</div>
  34. <div class="data wow fadeInUp ql-editor">
  35. ${news.content}
  36. </div>
  37. </section>
  38. </div>
  39. <#include "./footer.ftl" parse=true encoding="utf-8">
  40. <script defer="defer" src="/runtime/index.js"></script>
  41. <script defer="defer" src="/vendor/index.js"></script>
  42. <script defer="defer" src="/newsDetail/index.js"></script>
  43. </body>
  44. <script>// 模块动画
  45. var wow = new WOW({
  46. boxClass: 'wow',
  47. animateClass: 'animated',
  48. offset: 100,
  49. live: true,
  50. mobile: false
  51. });
  52. wow.init();</script>
  53. </html>