- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
Latest commit
66 lines (53 loc) · 2.02 KB
/
Copy path404.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>
<htmllang="en">
<head>
<title>404 Not Found</title>
<metacharset="utf-8">
<metahttp-equiv="X-UA-Compatible" content="IE=edge">
<metaname="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<metaname="theme-color" content="#009688">
<linkrel="stylesheet" href="{{ '/lib/materialize/css/materialize.min.css' | prepend: site.baseurl }}">
<linkmedia="all" rel="stylesheet" type="text/css" href="{{ '/lib/mdi/css/materialdesignicons.min.css' | prepend: site.baseurl }}">
<style>
body {
background-color:#009688;
}
.card-404 {
margin:40px10px;
}
.back-home {
position: fixed;
right:40px;
bottom:60px;
}
</style>
</head>
<body>
<divclass="card-404 valign-wrapper">
<divclass="row">
<divclass="card cyan hoverable">
<divclass="card-content white-text center-align">
<divclass="card-title">
<div>
<iclass="mdi mdi-numeric-4-box-outline medium" style="margin-right: 30px;"></i>
<iclass="mdi mdi-numeric-4-box-outline medium" style="margin-left: 30px;"></i>
</div>
<iclass="mdi mdi-numeric-0-box small"></i>
<divstyle="-ms-transform: rotate(-90deg); -webkit-transform: rotate(-90deg); transform: rotate(-90deg);">
<iclass="mdi mdi-brightness-3"></i>
</div>
</div>
<h5>Sorry, we couldn't find that page...</h5>
</div>
</div>
</div>
</div>
<divclass="back-home">
<ahref="{{ '/' | 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"><iclass="mdi mdi-home-variant left"></i>go home</a>
</div>
<scripttype="text/javascript" src="{{ '/lib/jquery-min.js' | prepend: site.baseurl }}"></script>
<scriptsrc="{{ '/lib/materialize/js/materialize.min.js' | prepend: site.baseurl }}"></script>
</body>
</html>