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