-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path404.php
151 lines (73 loc) · 4.1 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="en">
<head>
<?php include("head.php"); ?>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.css">
<!-- our design CSS -->
<!-- base CSS -->
<link href="vendor/css/base.css" rel="stylesheet">
<!-- layout CSS -->
<link href="vendor/css/layout.css" rel="stylesheet">
<!-- modules CSS -->
<link href="vendor/css/modules.css" rel="stylesheet">
<!-- element states CSS -->
<link href="vendor/css/states.css" rel="stylesheet">
<!-- end design CSS -->
<script src="vendor/js/modernizr.custom.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/solid.css" integrity="sha384-rdyFrfAIC05c5ph7BKz3l5NG5yEottvO/DQ0dCrwD8gzeQDjYBHNr1ucUpQuljos" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/fontawesome.css" integrity="sha384-u5J7JghGz0qUrmEsWzBQkfvc8nK3fUT7DCaQzNQ+q4oEXhGSx+P2OqjWsfIRB8QT" crossorigin="anonymous">
<!-- animate css for wow effects -->
<link href="vendor/css/libs/animate.css" rel="stylesheet">
<!-- end wow animation css -->
<script type="text/javascript" src="vendor/jquery/jquery.min.js"></script>
<script type="text/javascript" src="vendor/js/common.js"></script>
</head>
<body class="wow fadeIn" style="background-color: #343434;">
<!-- Navigation -->
<?php include("navbar.php"); ?>
<?php include("menu.php"); ?>
<section>
<div class="container wow fadeInUp" style="padding-bottom: 60px;">
<div class="row">
<div class="col-lg-12">
<h1 data-lang="oops" class="white pageHeader">OOPS! PAGE NON TROUVÉE OU DÉPLACÉE</h1>
</div>
</div>
<div class="row">
<div class="dividerLine"> </div>
</div>
</div>
<div id="explore-btn" class="wow fadeInUpBig" data-wow-delay="0s" data-wow-offset="100" data-wow-duration="2s" style="text-align: center; padding-top: 100px; visibility: visible;-webkit-animation-duration: 2s; -moz-animation-duration: 2s; animation-duration: 2s;-webkit-animation-delay: 2s; -moz-animation-delay: 2s; animation-delay: 2s;">
<a href="intro" class="btn btn-light btn-outline btn-white" role="button">RETOUR AU SITE</a>
</div>
</section>
<!-- Page Content -->
<?php include("footer.php"); ?>
<?php include("scripts.php"); ?>
<!--
<!-- Bootstrap core JavaScript -->
<!-- Extra js files -->
</body>
</html>
<?php include('include/header.php'); ?>
<?php include('include/menu.php'); ?>
<main>
<section>
<div class="container wow fadeInUp" style="padding-bottom: 60px;">
<div class="row">
<div class="col-lg-12">
<h1 data-lang="oops" class="white pageHeader">OOPS! PAGE NON TROUVÉE</h1>
</div>
</div>
<div class="row">
<div class="dividerLine"> </div>
</div>
</div>
<div id="explore-btn" class="wow fadeInUpBig" data-wow-delay="0s" data-wow-offset="100" data-wow-duration="2s" style="text-align: center; padding-top: 100px; visibility: visible;-webkit-animation-duration: 2s; -moz-animation-duration: 2s; animation-duration: 2s;-webkit-animation-delay: 2s; -moz-animation-delay: 2s; animation-delay: 2s;">
<a href="intro" class="btn btn-light btn-outline btn-white" role="button">RETOUR AU SITE</a>
</div>
</section>
<?php include('include/footer-part.php'); ?>
</main>
<?php include('include/footer.php'); ?>