-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathError.php
38 lines (36 loc) · 1.09 KB
/
Error.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
<?php
/**
* This file is part of the Sunhill Framework package.
*
* (c) Mehmet Selcuk Batal, Sunhill Technology <batalms@gmail.com>
*
* Licensed under The GNU Lesser General Public License, version 3.0
* Redistributions of files must retain the above copyright notice.
*/
?>
<!doctype html>
<html>
<head>
<base href="<?php echo (SYS_BASEURL); ?>/">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="Public/img/favicon.png">
<title>Error - Sunhill PHP Framework</title>
<link rel="stylesheet" href="Public/css/style.css">
</head>
<body>
<header>
<a href="home"><img src="Public/img/logo.svg"></a>
</header>
<main>
<div class="error">
<img src="Public/img/error.png">
<h3 class="title">Sorry!</h3>
<h3>The Page You're Looking For Was Not Found.</h3>
</div>
</main>
<footer>
© <?php echo date("Y");?>, Coded by <a href="https://www.sunhillint.com" target="_blank">Sunhill Technology</a>.
</footer>
</body>
</html>