-
Notifications
You must be signed in to change notification settings - Fork 0
/
pages-404.html
134 lines (77 loc) · 3.56 KB
/
pages-404.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
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
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error 404 | Nifty - Admin Template</title>
<!--STYLESHEET-->
<!--=================================================-->
<!--Open Sans Font [ OPTIONAL ]-->
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'>
<!--Bootstrap Stylesheet [ REQUIRED ]-->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!--Nifty Stylesheet [ REQUIRED ]-->
<link href="css/nifty.min.css" rel="stylesheet">
<!--Nifty Premium Icon [ DEMONSTRATION ]-->
<link href="css/demo/nifty-demo-icons.min.css" rel="stylesheet">
<!--JAVASCRIPT-->
<!--=================================================-->
<!--Pace - Page Load Progress Par [OPTIONAL]-->
<link href="plugins/pace/pace.min.css" rel="stylesheet">
<script src="plugins/pace/pace.min.js"></script>
<!--jQuery [ REQUIRED ]-->
<script src="js/jquery-2.2.4.min.js"></script>
<!--BootstrapJS [ RECOMMENDED ]-->
<script src="js/bootstrap.min.js"></script>
<!--NiftyJS [ RECOMMENDED ]-->
<script src="js/nifty.min.js"></script>
<!--=================================================-->
<!--=================================================
REQUIRED
You must include this in your project.
RECOMMENDED
This category must be included but you may modify which plugins or components which should be included in your project.
OPTIONAL
Optional plugins. You may choose whether to include it in your project or not.
DEMONSTRATION
This is to be removed, used for demonstration purposes only. This category must not be included in your project.
SAMPLE
Some script samples which explain how to initialize plugins or components. This category should not be included in your project.
Detailed information and more samples can be found in the document.
=================================================-->
</head>
<!--TIPS-->
<!--You may remove all ID or Class names which contain "demo-", they are only used for demonstration. -->
<body>
<div id="container" class="cls-container">
<!-- HEADER -->
<!--===================================================-->
<div class="cls-header">
<div class="cls-brand">
<a class="box-inline" href="index.html">
<!-- <img alt="Nifty Admin" src="images/logo.png" class="brand-icon"> -->
<span class="brand-title">Nifty<span class="text-thin">Admin</span></span>
</a>
</div>
</div>
<!-- CONTENT -->
<!--===================================================-->
<div class="cls-content">
<h1 class="error-code text-info">404</h1>
<p class="text-main text-semibold text-lg text-uppercase">Page Not Found!</p>
<div class="pad-btm text-muted">
Sorry, but the page you are looking for has not been found on our server.
</div>
<div class="row mar-ver">
<form class="col-xs-12 col-sm-10 col-sm-offset-1" method="post" action="pages-search-results.html">
<input type="text" placeholder="Search.." class="form-control input-lg error-search">
</form>
</div>
<hr class="new-section-sm bord-no">
<div class="pad-top"><a class="btn-link" href="index.html">Back to Homepage</a></div>
</div>
</div>
<!--===================================================-->
<!-- END OF CONTAINER -->
</body>
</html>