-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.php
51 lines (47 loc) · 1.55 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
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
defined('_JEXEC') or die;
$app = JFactory::getApplication();
$doc = JFactory::getDocument();
$user = JFactory::getUser();
$this->language = $doc->language;
$this->direction = $doc->direction;
// Output as HTML5
$doc->setHtml5(true);
$sitename = $app->get('sitename');
?>
<!DOCTYPE html>
<html lang="<?=$this->language;?>" class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="<?=$this->baseurl?>/templates/gorbib/css/template.css">
<style>
.page {
background: none;
border: none;
}
body {
background-image: url(<?=$this->baseurl?>/templates/gorbib/images/404.gif);
background-position: bottom;
}
.error-title {
color: #fff;
font-size: 3em;
text-align: center;
text-shadow: 1px 1px 15px #d8765d;
}
</style>
</head>
<body>
<main class="page container">
<h1 class="error-title">Страница не найдена</h1>
<h2 style="text-align:center;color:#fff;text-shadow: 1px 1px 15px #d8765d;">Вы ошиблись при наборе адреса или мы удалили эту страницу</h2>
<h3 style="text-align:center;text-shadow: 1px 1px 15px #d8765d;"><a href="/" style="color:#fff;border-bottom: 1px solid">Начните с главной</a></h3>
</main>
<footer class="footer">
<?=$sitename?>
</footer>
</body>
</html>