-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
39 lines (33 loc) · 1003 Bytes
/
404.php
File metadata and controls
39 lines (33 loc) · 1003 Bytes
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
<?php
require_once "Class/Core.php";
require_once "Class/Index.php";
$footer=new Index();
?>
<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Код ошибки 404. Страница не найдена.">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="icon" href="/favicon.png" type="image/png">
<title>Ошибка 404! Страница не найдена...</title>
<meta name="robots" content="noindex">
</head>
<body class="body">
<?php
$footer->get_body();
?>
<div class="row">
<div class="col-lg-12 img-404">
<img src="/images/config/wall.jpg">
</div>
</div>
<footer>
<?php $footer->get_footer(); ?>
</footer>
</body>
</html>