1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml"
- xmlns:th="http://www.thymeleaf.org"
- xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
- <head th:replace="common::header(~{::title},~{::link})">
- <title>阿凡提-新闻详情--我的技术和科技服务交易平台</title>
- <link th:href="${portalHost + '/dll/dll.css'}" rel="stylesheet">
- <link th:href="${portalHost + '/vendors.css'}" rel="stylesheet">
- <link th:href="${portalHost + '/thinkTank/policyDetail.css'}" rel="stylesheet">
- </head>
- <body>
- <div th:replace="common::nav('news','newsDetail')"></div>
- <div id="policyDetail">
- <div id="policy_content">
- <div class="content_left" th:each="newsDetail:${newsDetail}">
- <h3 th:text="${newsDetail.title}?${newsDetail.title}:''"></h3>
- <div class="small_title">
- <span>时间:<span th:text="${newsDetail.createTime}?${#dates.format(newsDetail.createTime,'yyyy-MM-dd')}:''"></span></span>
- <span>来源:<span th:text="${newsDetail.source}?${newsDetail.source}:行业新闻"></span></span>
- </div>
- <div th:each="img:${imgs}" class="content_img">
- <img th:src="${avatarUploadHost+img}" alt="" />
- </div>
- <p th:utext="${newsDetail.content}?${newsDetail.content}:'暂无内容'">
- </p>
- <h5 class="text_end">文章来自:</h5>
- <a th:href="${newsDetail.sourceUrl}?${newsDetail.sourceUrl}:'www.jishutao.com'"></a>
- <hr />
- <h5 th:if="${hasHighTech || hasPatent || hasCopyright || hasTechProj}">关联业务:</h5>
- <span th:if="${hasHighTech}"><a th:href="${basePath + '/user/account/services.html#contract'}" target="_blank">高企认证</a></span>
- <span th:if="${hasPatent}"><a th:href="${basePath + '/user/account/services.html#contract'}" target="_blank">专利申请</a></span>
- <span th:if="${hasCopyright}"><a th:href="${basePath + '/user/account/services.html#contract'}" target="_blank">软著申请</a></span>
- <span th:if="${hasTechProj}"><a th:href="${basePath + '/user/account/services.html#contract'}" target="_blank">科技项目申请</a></span>
- <hr />
- <!-- <div class="next_div">
- <span class="rf">
- <h5>下一篇:</h5> <a href="#">科技探索</a>
- </span> <span>
- <h5>上一篇:</h5> <a href="#">探索科技</a>
- </span>
- </div> -->
- <!-- <h5>推荐文章:</h5>
- <div th:each="news:${news}">
- <span ><a th:href="@{/portal/news/newsDetail(id=${news.id},type=${type})}" th:text="${news.title}?${news.title}:'暂无更多内容'"></a></span>
- </div> -->
- </div>
- <div class="contetn_right" >
- <div class="right_title">
- <div>热点资讯</div>
- </div>
- <div th:each="newsList:${newsList}">
- <h5 ><a th:href="@{/portal/news/newsDetail(id=${newsList.id},type=${type})}" th:text="${newsList.title}?${newsList.title}:''"></a></h5>
- <!-- <img th:src="${avatarUploadHost+newsDetail.titleImg}" alt="" /> -->
- <p th:text="${newsList.createTime}?${#dates.format(newsList.createTime,'yyyy-MM-dd')}:''"></p>
- </div>
- </div>
- </div>
- </div>
- <footer>
- <div th:replace="common::copyright"></div>
- <div th:replace="common::login"></div>
- </footer>
- <div th:replace="common::footer(~{::script})">
- <script type="text/javascript" th:src="${portalHost + '/dll/dll.js'}"></script>
- <script type="text/javascript" th:src="${portalHost + '/vendors.js'}"></script>
- <script type="text/javascript"
- th:src="${portalHost + '/thinkTank/policyDetail.js'}"></script>
- </div>
- </body>
- </html>
|