-
Notifications
You must be signed in to change notification settings - Fork 0
/
error404.php
79 lines (51 loc) · 1.72 KB
/
error404.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
require('class/class.php');
require('config.php');
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Erreur 404 | <?php echo SITE_TITLE; ?></title>
<meta name="description" content="La page que vous cherchez n'a pas été trouvée.">
<!-- Jquery 3.4.1-->
<script src="js/jquery-3.4.1.min.js"></script>
<!-- Bootstrap 4.3.1 -->
<link href="css/bootstrap.css" rel="stylesheet">
<script src="js/bootstrap.min.js"></script>
<!-- CSS perso -->
<link href="css/style.css" rel="stylesheet">
<!-- Bootstrap Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<?php include 'include/tarteaucitron.inc.php'; ?>
<!-- url canonical -->
<link rel="canonical" href="https://imerologio.boitasite.com/error404.php"/>
</head>
<body>
<div class="container mt-4">
<header class="row">
<div class="col-md-12">
<a href="/index.php" title=" ">
<h1 class="text-center"><?php echo SITE_TITLE; ?></h1>
<p class="text-center"><?php echo SITE_SLOGAN; ?></p>
</a>
</div>
</header>
<section class="row">
<article class="col-md-9">
<h3 class="text-center">Erreur 404 !</h3>
<p class="text-center">La page que vous cherchez n'a pas été trouvée.</p>
</article>
<aside class="col-md-3">
<nav><?php include('include/aside.php');?></nav>
</aside>
</section>
<footer class="row">
<?php include('include/footer.php'); ?>
</footer>
</div>
<!-- code piwik pour les stats -->
<?php include('include/piwik.php'); ?>
</body>
</html>