123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <#--文章详情-->
- <!doctype html>
- <html lang="cn">
- <head>
- <meta charset="utf-8"/>
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
- <title>${article.title!'文章详情'}</title>
- <meta name="description" content="${article.digest!''}"/>
- <meta name="Keywords" content="${article.key!''}"/>
- <meta content="initial-scale=1,user-scalable=no,maximum-scale=1,width=device-width" name="viewport"/>
- <link href="../static/css/swiper-bundle.min.css" rel="stylesheet"/>
- <link rel="stylesheet" href="../static/lib/animate.min.css">
- <script src="../static/lib/wow.min.js"></script>
- <link href="../common/index.css" rel="stylesheet">
- <link href="../articleDetails/index.css" rel="stylesheet">
- </head>
- <body>
- <#include "./detail/header.ftl" parse=true encoding="utf-8">
- <div class="main">
- <div class="content">
- <div class="canshu" data-path="${type}" data-uuid="${article.uuid}"></div>
- <div class="detail_head">
- <div class="head_left">
- <div>发稿时间:${article.createTime?string('yyyy-MM-dd HH:mm:ss')}</div>
- <div>来源:${article.source}</div>
- <div class="nums">浏览次数:${article.vievNum!'0'}</div>
- </div>
- </div>
- <div class="detail_head2">
- <div class="head_left">
- <div>发稿时间:${article.createTime?string('yyyy-MM-dd HH:mm:ss')}</div>
- <div>来源:${article.source}</div>
- </div>
- <div class="head_right">
- <div class="nums">浏览次数:${article.vievNum!'0'}</div>
- </div>
- </div>
- <div class="detail_title">
- <div class="title">${article.title}</div>
- </div>
- ${article.content}
- <#if otherNews??>
- <div class="detail_footer">
- <#if otherNews?keys?seq_contains("upNew")>
- <a href="./${otherNews.upNew.uuid}.html">上一篇:${otherNews.upNew.title}</a>
- </#if>
- <#if otherNews?keys?seq_contains("nextNew")>
- <a href="./${otherNews.nextNew.uuid}.html">下一篇:${otherNews.nextNew.title}</a>
- </#if>
- </div>
- </#if>
- </div>
- </div>
- <#include "./detail/footer.ftl" parse=true encoding="utf-8">
- <script defer="defer" src="../runtime/index.js"></script>
- <script defer="defer" src="../vendor/index.js"></script>
- <script defer="defer" src="../common/index.js"></script>
- <script defer="defer" src="../articleDetails/index.js"></script>
- </body>
- </html>
|