123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <%var cssPar = {%>
- <link rel="stylesheet" href="${contextPath}/DirectorEditPages/css/font-awesome.min.css">
- <link href="${contextPath}/DirectorEditPages/css/cssl.css" type="text/css" rel="stylesheet">
- <link rel="stylesheet" type="text/css" href="${contextPath}/DirectorEditPages/css/technologyl.css" />
- <%};%>
- <%var jsPar = {%>
- <script src="${contextPath}/DirectorEditPages/js/jquery.min.js"></script>
- <script src="${contextPath}/DirectorEditPages/js/bootstrap.min.js"></script>
- <%};%>
- <%layout("/DirectorEditPages/commonPage/_layout.html", {nav:"",meunsel:"",jsParam:jsPar,cssParam:cssPar}) {%>
- <!--小导航-->
- <div id="title_nav">
- <div class="conent">
- <span>当前位置:</span>
- <a href="${contextPath}/">首页</a>
- <span>></span>
- <a href="${contextPath}/talentsWeb/toTech">人才大集</a>
- <span>></span>
- <a href="${contextPath}/talentsWeb/toTechExpert">参考资料</a>
- <span>></span>
- <a href="javascript:">参考资料明细</a>
- </div>
- <div class="login">
- <%if(session.LoginTalentsUser!'' == ''){%>
- 欢迎进入人才大集!
- <a href="${contextPath}/talentsWeb/tologin">登录</a> /
- <a href="${contextPath}/talentsWeb/toRegister">注册</a>
- <%}else{%>
- 欢迎 <b>${session.LoginTalentsUser.name!''}</b> 进入人才大集!
- <a href="${contextPath}/talentsWeb/toPrivate">个人中心</a> /
- <a href="${contextPath}/talentsWeb/toAfterLogin">管理</a> /
- <a href="${contextPath}/talentsWeb/logout">登出</a>
- <%}%>
- </div>
- </div>
- <div class="te-ex">
- <h3> ${talentsInformation.name}</h3>
- <div class="te-ex-info">
- <span>信息类型:</span>
- <span>
- <%if(talentsInformation.infoType == 1){%>
- <font>就业指导</font>
- <%}else if(talentsInformation.infoType == 2){%>
- <font>工作顾问</font>
- <%}else if(talentsInformation.infoType == 3){%>
- <font>新闻资讯</font>
- <%}else if(talentsInformation.infoType == 4){%>
- <font>简历模板</font>
- <%}else if(talentsInformation.infoType == 5){%>
- <font>面试指南</font>
- <%}else if(talentsInformation.infoType == 6){%>
- <font>其他</font>
- <%}%>
- </span>
-  发布人:<span> ${talentsInformation.userName}</span>
-  时间:<span> ${talentsInformation.createDate}</span>
- </div>
- <div class="te-ex-content">
- ${talentsInformation.content}
- </div>
- </div>
- <%}%>
|