expert_details.html 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <%var cssPar = {%>
  2. <link rel="stylesheet" href="${contextPath}/DirectorEditPages/css/font-awesome.min.css">
  3. <link href="${contextPath}/DirectorEditPages/css/cssl.css" type="text/css" rel="stylesheet">
  4. <link rel="stylesheet" type="text/css" href="${contextPath}/DirectorEditPages/css/technologyl.css" />
  5. <%};%>
  6. <%var jsPar = {%>
  7. <script src="${contextPath}/DirectorEditPages/js/jquery.min.js"></script>
  8. <script src="${contextPath}/DirectorEditPages/js/bootstrap.min.js"></script>
  9. <%};%>
  10. <%layout("/DirectorEditPages/commonPage/_layout.html", {nav:"",meunsel:"",jsParam:jsPar,cssParam:cssPar}) {%>
  11. <!--小导航-->
  12. <div id="title_nav">
  13. <div class="conent">
  14. <span>当前位置:</span>
  15. <a href="${contextPath}/">首页</a>
  16. <span>></span>
  17. <a href="${contextPath}/talentsWeb/toTech">人才大集</a>
  18. <span>></span>
  19. <a href="${contextPath}/talentsWeb/toTechExpert">参考资料</a>
  20. <span>></span>
  21. <a href="javascript:">参考资料明细</a>
  22. </div>
  23. <div class="login">
  24. <%if(session.LoginTalentsUser!'' == ''){%>
  25. 欢迎进入人才大集!&nbsp;&nbsp;
  26. <a href="${contextPath}/talentsWeb/tologin">登录</a>&nbsp;/&nbsp;
  27. <a href="${contextPath}/talentsWeb/toRegister">注册</a>
  28. <%}else{%>
  29. 欢迎 <b>${session.LoginTalentsUser.name!''}</b> 进入人才大集!&nbsp;&nbsp;
  30. <a href="${contextPath}/talentsWeb/toPrivate">个人中心</a>&nbsp;/&nbsp;
  31. <a href="${contextPath}/talentsWeb/toAfterLogin">管理</a>&nbsp;/&nbsp;
  32. <a href="${contextPath}/talentsWeb/logout">登出</a>
  33. <%}%>
  34. </div>
  35. </div>
  36. <div class="te-ex">
  37. <h3> ${talentsInformation.name}</h3>
  38. <div class="te-ex-info">
  39. <span>信息类型:</span>
  40. <span>
  41. <%if(talentsInformation.infoType == 1){%>
  42. <font>就业指导</font>
  43. <%}else if(talentsInformation.infoType == 2){%>
  44. <font>工作顾问</font>
  45. <%}else if(talentsInformation.infoType == 3){%>
  46. <font>新闻资讯</font>
  47. <%}else if(talentsInformation.infoType == 4){%>
  48. <font>简历模板</font>
  49. <%}else if(talentsInformation.infoType == 5){%>
  50. <font>面试指南</font>
  51. <%}else if(talentsInformation.infoType == 6){%>
  52. <font>其他</font>
  53. <%}%>
  54. </span>
  55. &#12288;发布人:<span> ${talentsInformation.userName}</span>
  56. &#12288;时间:<span> ${talentsInformation.createDate}</span>
  57. </div>
  58. <div class="te-ex-content">
  59. ${talentsInformation.content}
  60. </div>
  61. </div>
  62. <%}%>