Blame view

WebRoot/404.jsp 4.17 KB
ad5081d3   孙向锦   初始化项目
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
  <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
  <%
  	String path = request.getContextPath();
  	String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/static/";
  %>
  <!DOCTYPE html>
  <html lang="en">
  	<head>
  		<base href="<%=basePath%>">
  		<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  		<meta charset="utf-8" />
  		<title>404</title>
  		<meta name="description" content="" />
  		<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
  		<!-- bootstrap & fontawesome -->
  		<link rel="stylesheet" href="static/ace/css/bootstrap.css" />
  		<link rel="stylesheet" href="static/ace/css/font-awesome.css" />
  		<!-- page specific plugin styles -->
  		<!-- text fonts -->
  		<link rel="stylesheet" href="static/ace/css/ace-fonts.css" />
  		<!-- ace styles -->
  		<link rel="stylesheet" href="static/ace/css/ace.css" class="ace-main-stylesheet" id="main-ace-style" />
  		<!--[if lte IE 9]>
  			<link rel="stylesheet" href="static/ace/css/ace-part2.css" class="ace-main-stylesheet" />
  		<![endif]-->
  		<!--[if lte IE 9]>
  		  <link rel="stylesheet" href="static/ace/css/ace-ie.css" />
  		<![endif]-->
  		<!-- inline styles related to this page -->
  		<!-- ace settings handler -->
  		<script src="static/ace/js/ace-extra.js"></script>
  		<!-- HTML5shiv and Respond.js for IE8 to support HTML5 elements and media queries -->
  		<!--[if lte IE 8]>
  		<script src="static/ace/js/html5shiv.js"></script>
  		<script src="static/ace/js/respond.js"></script>
  		<![endif]-->
  	</head>
  		 
  <body class="no-skin">
  
  	<!-- /section:basics/navbar.layout -->
  	<div class="main-container" id="main-container">
  		<!-- /section:basics/sidebar -->
  		<div class="main-content">
  			<div class="main-content-inner">
  				<div class="page-content">
  					<div class="hr hr-18 dotted hr-double"></div>
  					<div class="row">
  						<div class="col-xs-12">
  							<div class="error-container">
  							<div class="well">
  								<h1 class="grey lighter smaller">
  									<span class="blue bigger-125"><i class="icon-sitemap"></i> 404</span> 没有找到此页面
  								</h1>
  								<hr />
  								
  								<div>
  									
  									<div class="space"></div>
  									
  									<h4 class="smaller">检查一下可能性:</h4>
  									<ul>
  										<li><i class="icon-hand-right blue"></i> 检查请求链接是不是有误</li>
  										<li><i class="icon-hand-right blue"></i> 检查处理类代码是不是有误</li>
  										<li><i class="icon-hand-right blue"></i> 检查环境配置是不是有误</li>
  										<li><i class="icon-hand-right blue"></i> 检查处理类视图映射路径</li>
  									</ul>
  								</div>
  								
  								<hr />
  								<div class="space"></div>
  								
  								<div class="row-fluid">
  									<div id="zhongxin">
  									</div>
  								</div>
  							</div>
  							</div>
  		
  						</div>
  						<!-- /.col -->
  					</div>
  					<!-- /.row -->
  				</div>
  				<!-- /.page-content -->
  			</div>
  		</div>
  		<!-- /.main-content -->
  
  
  		<!-- 返回顶部 -->
  		<a href="#" id="btn-scroll-up" class="btn-scroll-up btn btn-sm btn-inverse">
  			<i class="ace-icon fa fa-angle-double-up icon-only bigger-110"></i>
  		</a>
  
  	</div>
  	<!-- /.main-container -->
  
  	<!-- basic scripts -->
  	<!-- 页面底部js¨ -->
  	
  	<!--[if !IE]> -->
  	<script type="text/javascript">
  		window.jQuery || document.write("<script src='<%=basePath%>static/ace/js/jquery.js'>"+"<"+"/script>");
  	</script>
  	<!-- <![endif]-->
  	<!--[if IE]>
  	<script type="text/javascript">
  	 window.jQuery || document.write("<script src='<%=basePath%>static/ace/js/jquery1x.js'>"+"<"+"/script>");
  	</script>
  	<![endif]-->
  	<script type="text/javascript">
  		if('ontouchstart' in document.documentElement) document.write("<script src='<%=basePath%>static/ace/js/jquery.mobile.custom.js'>"+"<"+"/script>");
  	</script>
  	<script src="static/ace/js/bootstrap.js"></script>
  	
  	
  	<!-- ace scripts -->
  	<script src="static/ace/js/ace/ace.js"></script>
  	<!-- inline scripts related to this page -->
  	<script type="text/javascript">
  		$(top.hangge());
  	</script>
  
  
  </body>
  </html>