Blame view

html/ajax/error-404.html 1.96 KB
5a739853   patrick.he   commit
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
  
  <title>404 Error Page - Ace Admin</title>
  
  <!-- ajax layout which only needs content area -->
  <div class="row">
  	<div class="col-xs-12">
  		<!-- PAGE CONTENT BEGINS -->
  
  		<!-- #section:pages/error -->
  		<div class="error-container">
  			<div class="well">
  				<h1 class="grey lighter smaller">
  					<span class="blue bigger-125">
  						<i class="ace-icon fa fa-sitemap"></i>
  						404
  					</span>
  					Page Not Found
  				</h1>
  
  				<hr />
  				<h3 class="lighter smaller">We looked everywhere but we couldn't find it!</h3>
  
  				<div>
  					<form class="form-search">
  						<span class="input-icon align-middle">
  							<i class="ace-icon fa fa-search"></i>
  
  							<input type="text" class="search-query" placeholder="Give it a search..." />
  						</span>
  						<button class="btn btn-sm" type="button">Go!</button>
  					</form>
  
  					<div class="space"></div>
  					<h4 class="smaller">Try one of the following:</h4>
  
  					<ul class="list-unstyled spaced inline bigger-110 margin-15">
  						<li>
  							<i class="ace-icon fa fa-hand-o-right blue"></i>
  							Re-check the url for typos
  						</li>
  
  						<li>
  							<i class="ace-icon fa fa-hand-o-right blue"></i>
  							Read the faq
  						</li>
  
  						<li>
  							<i class="ace-icon fa fa-hand-o-right blue"></i>
  							Tell us about it
  						</li>
  					</ul>
  				</div>
  
  				<hr />
  				<div class="space"></div>
  
  				<div class="center">
  					<a href="javascript:history.back()" class="btn btn-grey">
  						<i class="ace-icon fa fa-arrow-left"></i>
  						Go Back
  					</a>
  
  					<a href="#" class="btn btn-primary">
  						<i class="ace-icon fa fa-tachometer"></i>
  						Dashboard
  					</a>
  				</div>
  			</div>
  		</div>
  
  		<!-- /section:pages/error -->
  
  		<!-- PAGE CONTENT ENDS -->
  	</div><!-- /.col -->
  </div><!-- /.row -->
  
  <!-- page specific plugin scripts -->
  <script type="text/javascript">
  	var scripts = [null, null]
  	$('.page-content-area').ace_ajax('loadScripts', scripts, function() {
  	  //inline scripts related to this page
  	});
  </script>