This repository has been archived by the owner on Dec 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
63 lines (57 loc) · 1.49 KB
/
404.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta charset="utf-8">
<title>ChemisProject - Page not found</title>
<?php
include_once 'head.php';
?>
</head>
<body>
<?php
include_once 'header.php';
?>
<div id="chemis-page" class="pure-g-r">
<div id="session-404" class="pure-u-1 session">
<div class="pure-g-r">
<div class="pure-u-1-2">
<div class="margin-container">
<img src="img/ufo.png">
<h2>A página que você procura pode ter sido abduzida</h2>
<p>
Tente voltar ao nosso site por um dos links acima! (que ainda restam...)
</p>
</div>
</div>
</div>
</div>
<footer id="session-footer" class="pure-u-1 session">
<p>ChemisProject ©All Rights reserved</p>
<p>ChemisProject is an open source project under
<a href="http://www.gnu.org/licenses/gpl-2.0.html" title="GNU GPL2" target="_blank">GNU General Public Liscense Version 2</a>
</p>
</footer>
</div>
</body>
<script>
var menuOpen=false;
function openMenu(){
if(menuOpen){
$("#chemis-tool-bar").removeClass("open");
menuOpen=false;
}else{
$("#chemis-tool-bar").addClass("open");
menuOpen=true;
}
}
$("#chemis-tool-bar li").click(function(){openMenu()});
function setItemSelected(item) {
$("#chemis-tool-bar li").removeClass("pure-menu-selected");
$(item).addClass("pure-menu-selected");
}
$("#chemis-tool-bar li").click(function() {
setItemSelected(this);
});
</script>
</html>