-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
66 lines (53 loc) · 2.02 KB
/
404.html
File metadata and controls
66 lines (53 loc) · 2.02 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
---
---
<!DOCTYPE html>
<html lang="en">
<head>
<title>404 Not Found</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<meta name="theme-color" content="#009688">
<link rel="stylesheet" href="{{ '/lib/materialize/css/materialize.min.css' | prepend: site.baseurl }}">
<link media="all" rel="stylesheet" type="text/css" href="{{ '/lib/mdi/css/materialdesignicons.min.css' | prepend: site.baseurl }}">
<style>
body {
background-color: #009688;
}
.card-404 {
margin: 40px 10px;
}
.back-home {
position: fixed;
right: 40px;
bottom: 60px;
}
</style>
</head>
<body>
<div class="card-404 valign-wrapper">
<div class="row">
<div class="card cyan hoverable">
<div class="card-content white-text center-align">
<div class="card-title">
<div>
<i class="mdi mdi-numeric-4-box-outline medium" style="margin-right: 30px;"></i>
<i class="mdi mdi-numeric-4-box-outline medium" style="margin-left: 30px;"></i>
</div>
<i class="mdi mdi-numeric-0-box small"></i>
<div style="-ms-transform: rotate(-90deg); -webkit-transform: rotate(-90deg); transform: rotate(-90deg);">
<i class="mdi mdi-brightness-3"></i>
</div>
</div>
<h5>Sorry, we couldn't find that page...</h5>
</div>
</div>
</div>
</div>
<div class="back-home">
<a href="{{ '/' | prepend: site.baseurl }}" class="tooltipped waves-effect waves-light cyan lighten-1 btn-floating btn-large white-text" data-position="left" data-delay="50" data-tooltip="Back to home"><i class="mdi mdi-home-variant left"></i>go home</a>
</div>
<script type="text/javascript" src="{{ '/lib/jquery-min.js' | prepend: site.baseurl }}"></script>
<script src="{{ '/lib/materialize/js/materialize.min.js' | prepend: site.baseurl }}"></script>
</body>
</html>