-
Notifications
You must be signed in to change notification settings - Fork 0
/
200.html
executable file
·92 lines (74 loc) · 2.93 KB
/
200.html
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
<!doctype html>
<html class="error-page no-js" lang="">
<head>
<!-- meta -->
<meta charset="utf-8">
<meta name="description" content="Flat, Clean, Responsive, application admin template built with bootstrap 3">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<!-- /meta -->
<title>Sublime - Web Application Admin Dashboard</title>
<!-- page level plugin styles -->
<!-- /page level plugin styles -->
<!-- core styles -->
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.css">
<link rel="stylesheet" href="css/themify-icons.css">
<link rel="stylesheet" href="css/animate.min.css">
<!-- /core styles -->
<!-- template styles -->
<link rel="stylesheet" href="css/skins/palette.css">
<link rel="stylesheet" href="css/fonts/font.css">
<link rel="stylesheet" href="css/main.css">
<!-- template styles -->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- load modernizer -->
<script src="plugins/modernizr.js"></script>
</head>
<!-- body -->
<body class="bg-primary">
<!-- error wrapper -->
<div class="center-wrapper">
<div class="center-content text-center">
<div class="error-number animated bounceIn">404</div>
<div class="mb25">PAGE NOT FOUND</div>
<p>Sorry, but the page you were trying to view does not exist.</p>
<div class="search">
<form class="form-inline" role="form">
<div class="search-form">
<button class="search-button" type="submit" title="Search">
<i class="ti-search"></i>
</button>
<input type="text" class="form-control no-b" placeholder="Search Admin Panel">
</div>
</form>
</div>
<ul class="mt25 error-nav">
<li>
<a href="javascript:;">©
<span id="year" class="mr5"></span>Sublime LLC</a>
</li>
<li>
<a href="javascript:;">About</a>
</li>
<li>
<a href="javascript:;">Help</a>
</li>
<li>
<a href="javascript:;">Status</a>
</li>
</ul>
</div>
</div>
<!-- /error wrapper -->
<script type="text/javascript">
var el = document.getElementById("year"),
year = (new Date().getFullYear());
el.innerHTML = year;
</script>
</body>
<!-- /body -->
</html>