-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path404.html
59 lines (53 loc) · 1.7 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="/img/favicon.ico" />
<title>NYCSL 404</title>
<link href="/lib/bootstrap.min.css" rel="stylesheet">
<link href="/lib/bootstrap-material-design.css" rel="stylesheet">
<link href="/lib/ripples.min.css" rel="stylesheet">
<link href="/style/general.css" rel="stylesheet">
<style>
.error-template {padding: 40px 15px;text-align: center;}
.error-actions {margin-top:15px;margin-bottom:15px;}
.error-actions .btn { margin-right:10px; }
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="error-template">
<h1>You seem lost.</h1>
<div class="error-details">
This page does not exist.
</div>
<div class="error-actions">
<a href="/" class="btn btn-primary btn-lg">
<span class="glyphicon glyphicon-home"></span>
Return to NYCSL
</a>
<a href="mailto:[email protected]" class="btn btn-default btn-lg">
<span class="glyphicon glyphicon-envelope"></span>
Contact Us
</a>
<a href="https://github.com/BackPropagation/NYCSL/issues" class="btn btn-default btn-lg">
<span class="glyphicon glyphicon-wrench"></span>
Open issue on Github
</a>
</div>
</div>
</div>
</div>
</div>
<script src="/lib/jquery.min.js"></script>
<script src="/lib/bootstrap.min.js"></script>
<script src="/lib/material.min.js"></script>
<script src="/lib/ripples.min.js"></script>
</body>
</html>