-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
75 lines (69 loc) · 3 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<link rel="icon" href="img/icon.ico">
<title>Page Not Found - CE Programming</title>
<!-- CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
</head>
<body>
<div class="navbar-fixed">
<nav class="cemu-color" role="navigation">
<div class="nav-wrapper container">
<a id="logo-container" href="/" class="brand-logo"><img class="hide-on-med-and-down" src="img/icon.png" alt="CE Programming"> CE Programming</a>
<ul class="right hide-on-med-and-down">
<li class="waves-effect waves-light"><a href="https://github.com/CE-Programming"><i class="material-icons left">code</i>GitHub</a></li>
</ul>
<ul id="nav-mobile" class="side-nav">
<li class="waves-effect waves-light"><a href="https://github.com/CE-Programming"><i class="material-icons left">code</i>GitHub</a></li>
</ul>
<a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
</div>
</nav>
</div>
<div class="container valign-wrapper">
<div class="not-found-outer valign">
<div class="not-found-inner">
<i class="material-icons" style="font-size: 48px;">error</i>
<h5>Page Not Found</h5>
<p class="">
Oops! You navigated to an invalid page.<br /><br />
<a class="waves-effect waves-light btn default-color" href="/">Home</a>
</p>
</div>
</div>
</div>
<footer class="page-footer cemu-color">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">About</h5>
<p class="grey-text text-lighten-4">
CE Programming is an organization created and contributed to by a variety of skilled people from across the calculator community.
</p>
</div>
<div class="col l6 s12">
<h5 class="white-text">Support</h5>
<ul>
<li><a class="white-text" href="http://chat.efnet.org/irc.cgi?adv=1&nick=ce-user&chan=%23ez80-dev">Chat with Developers on IRC (EFNet @ #ez80-dev)</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
© 2015-<script>document.write(new Date().getFullYear())</script> CE Programming. Made with <a class="orange-text text-lighten-3" href="http://materializecss.com">Materialize</a>.
<span class="right right-align">
</div>
</div>
</footer>
<!-- Scripts-->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="js/materialize.js"></script>
<script src="js/init.js"></script>
</body>
</html>