forked from ljb-2000/theme
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patherror404.html
More file actions
72 lines (56 loc) · 2.01 KB
/
error404.html
File metadata and controls
72 lines (56 loc) · 2.01 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Simplify Admin</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Bootstrap core CSS -->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link href="css/font-awesome.min.css" rel="stylesheet">
<!-- ionicons -->
<link href="css/ionicons.min.css" rel="stylesheet">
<!-- Simplify -->
<link href="css/simplify.min.css" rel="stylesheet">
</head>
<body class="overflow-hidden light-background">
<div class="wrapper no-navigation preload">
<div class="error-wrapper">
<div class="error-inner">
<div class="error-type">404</div>
<h1>Page Not Found</h1>
<p>Look like the page you're looking for isn't here anymore.
Try typing the address again or start over from the home page.</p>
<div class="m-top-md">
<a href="index.html" class="btn btn-default btn-lg text-upper">Back to Home</a>
</div>
</div><!-- ./error-inner -->
</div><!-- ./error-wrapper -->
</div><!-- /wrapper -->
<a href="" id="scroll-to-top" class="hidden-print"><i class="icon-chevron-up"></i></a>
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<!-- Jquery -->
<script src="js/jquery-1.11.1.min.js"></script>
<!-- Bootstrap -->
<script src="bootstrap/js/bootstrap.min.js"></script>
<!-- Slimscroll -->
<script src='js/jquery.slimscroll.min.js'></script>
<!-- Popup Overlay -->
<script src='js/jquery.popupoverlay.min.js'></script>
<!-- Modernizr -->
<script src='js/modernizr.min.js'></script>
<!-- Simplify -->
<script src="js/simplify/simplify.js"></script>
<script>
$(function() {
setTimeout(function() {
$('.error-type').addClass('animated');
},100);
});
</script>
</body>
</html>