detail.jsp 1.0 KB

1234567891011121314151617181920212223242526
  1. <%@ page contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="/webpage/include/taglibf.jsp"%>
  3. <!doctype html>
  4. <html>
  5. <head>
  6. <meta charset="utf-8">
  7. <title>${fns:getConfig("productName")} 详细页</title>
  8. <link rel="stylesheet" type="text/css" href="${ctxStaticWeb}/css/base.css" />
  9. <link rel="stylesheet" type="text/css" href="${ctxStaticWeb}/css/second.css" />
  10. <script src="${ctx}/static/web/js/jquery-2.1.4.js"></script>
  11. </head>
  12. <body>
  13. <%@ include file="/webpage/modules/web/top.jsp"%>
  14. <div class="new_list c">
  15. <h2 class="new_list_tit">当前位置:<a href="${ctx}/talent_web">首页</a>&gt;<a href="${ctxF}/${nav_link}">${nav_title}</a>&gt;详细内容</h2>
  16. </div>
  17. <div class="detail c">
  18. <h2>${news.title}<p style="font-size:14px; color:#666">更新时间:${fns:formatDateTime(news.updateDate)}&nbsp;&nbsp;<span>松原市人才公共服务平台</span></p></h2>
  19. <div class="detail_txt"><p>${fns:unescapeHtml(news.contents)}</p></div>
  20. </div>
  21. <%@ include file="/webpage/modules/web/footer.jsp"%>
  22. </body>
  23. </html>