123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <%@ page contentType="text/html;charset=UTF-8" language="java" session="true" %>
- <html>
- <head>
- <script src="${ctxStatic}/plugin/layui/layer/layer.js"></script>
- <script src="${ctxStatic}/plugin/layui/laytpl/laytpl.js"></script>
- </head>
- <script type="text/javascript">
- $(function() {
- $('#fav').addFavorite('收藏本站',location.href);
- })
- jQuery.fn.addFavorite = function(l, h) {
- return this.click(function() {
- var t = jQuery(this);
- if(jQuery.browser.msie) {
- window.external.addFavorite(h, l);
- } else if (jQuery.browser.mozilla || jQuery.browser.opera) {
- t.attr("rel", "sidebar");
- t.attr("title", l);
- t.attr("href", h);
- } else {
- alert("请使用Ctrl+D将本页加入收藏夹!");
- }
- });
- };
- function exit() {
- layer.confirm('确认要退出登录吗?', {icon: 3, title:'提示'}, function(index){
- window.location.href = "${ctxF}/logout";
- layer.close(index);
- });
- }
- </script>
- <body>
- <div class="top">
- <div class="w">
- <div class="top_left fl"><i><img src="${ctxStaticWeb}/img/index_03.png"></i>
- <a href="javascript:;" id="fav">收藏本站</a>
- </div>
- <div class="top_right fr">
- <c:choose>
- <c:when test="${applicationScope.talentPerson == null}">
- <a href="${ctxF}/login">登录</a>
- <%--| <a href="${ctxF}/register">注册</a>--%>
- </c:when>
- <c:otherwise>
- ${applicationScope.talentPerson.name},欢迎登录 |
- <a href="${ctxF}/info">个人中心</a> | <a href="#" onclick="exit()">退出登录</a>
- </c:otherwise>
- </c:choose>
- </div>
- </div>
- </div>
- <div class="logo w ">
- <div class="logo_left fl"><img src="${ctxStaticWeb}/img/index_07.png" width="489" height="100"></div>
- <div class="logo_right fr">
- <%--<div class="sreach">
- <input type="text" placeholder="输入您想查找的内容">
- <a href="#"></a>
- </div>--%>
- </div>
- </div>
- <div class="nav w clearfix">
- <a href="${ctx}/">网站首页</a>
- <a href="${ctxF}/columnNews">学习专题</a>
- <a href="${ctxF}/videonews?typeId=1">榜样风采</a>
- <a href="${ctxF}/videonews?typeId=2">远教直播</a>
- <a href="${ctxF}/news?typeId=3">党史知识</a>
- <a href="${ctxF}/videonews?typeId=3">干部网苑</a>
- <a href="${ctxF}/news?typeId=5">远教课件</a>
- <c:choose>
- <c:when test="${applicationScope.talentPerson == null}">
- <a href="${ctxF}/login">在线考试</a>
- </c:when>
- <c:otherwise>
- <a href="${ctxF}/exam/wait">在线考试</a>
- </c:otherwise>
- </c:choose>
- <a href="${ctxF}/service">便民服务</a>
- </div>
- </body>
- </html>
|