_layout.html 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
  7. <link rel="shortcut icon" href="${contextPath}/favicon.ico"/>
  8. <link rel="bookmark" href="${contextPath}/favicon.ico"/>
  9. <link rel="stylesheet" href="${contextPath}/css/bootstrap/bootstrap.min.css">
  10. <link rel="stylesheet" href="${contextPath}/css/font-awesome.min.css">
  11. <link rel="stylesheet" href="${contextPath}/css/discuss.css">
  12. <!-- 此处写和自定一页面样式 -->
  13. ${cssParam!''}
  14. <title>专题讨论-吉林省产业技术创新联盟管理平台</title>
  15. </head>
  16. <body style="min-width: 1200px; background-color: #f5f5f5;">
  17. <div class="ds-logo2">
  18. <div class="ds-logo2-img">
  19. <a href="${contextPath}/TFDPublic/"><img src="${contextPath}/img/discuss/2.jpg"></a>
  20. <%if(session.LoginTFDUser!'' == ''){%>
  21. <a href="${contextPath}/TFDPublic/tologin/" target="_blank" style=" display: block; margin-top: 15px;margin-right: 24px; float: right; color: #ef2d36;">登陆</a>
  22. <%}else{%>
  23. <%if(session.LoginTFDUser.role!0 != 0){%>
  24. <a href="${contextPath}/TFDUserAfter/" target="_blank" style=" display: block; margin-top: 15px;margin-right: 24px; float: right; color: #ef2d36;">后台管理</a>
  25. <%}%>
  26. <a href="${contextPath}/TFDUserFront/" target="_blank" style=" display: block; margin-top: 15px;margin-right: 24px; float: right; color: #ef2d36;">我的主页</a>
  27. <%}%>
  28. <form action="${contextPath}/TFDPublic/getTopicsList" method="post">
  29. <input type="text" name="name" placeholder="搜索您感兴趣的专题">
  30. </form>
  31. </div>
  32. </div>
  33. <div class="ds" style="width: 1000px;">
  34. ${layoutContent}
  35. </div>
  36. <footer class="ds-footer">
  37. <p>地址:吉林省长春市朝阳区前进大街1244号</p>
  38. <p>邮编:123456 电话:123456789 传真:239823982 邮箱:1243456@163.com</p>
  39. <p>版权所有 吉林省计算中心</p>
  40. <p>技术支持:长春市福瑞科技有限公司</p>
  41. </footer>
  42. <script src="${contextPath}/js/jquery.min.js"></script>
  43. <script src="${contextPath}/js/bootstrap.min.js"></script>
  44. <!-- 页面中自定义的脚本写在下面 -->
  45. ${jsParam!''}
  46. </body>
  47. </html>