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