-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.php
More file actions
54 lines (39 loc) · 1.06 KB
/
Copy path404.php
File metadata and controls
54 lines (39 loc) · 1.06 KB
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
<!DOCTYPE html>
<html lang="en">
<!-- HEAD -->
<?php
include_once ("header.php");
?>
<body class="body-wrapper">
<!--========================================
= Navigation Section =
=========================================-->
<?php
include_once ("menu.php");
?>
<!--==== End of Navigation Section ====-->
<!--===================================
= Error Section =
====================================-->
<section class="section error">
<div class="container">
<div class="row">
<div class="col-md-8 m-auto">
<div class="block text-center" style="margin-top: 100px">
<img src="images/404.png" alt="404">
<h3>Oops!... <span data-i18n="error.page_not_found"></span></h3>
<a href="index.php" class="btn btn-main-md"><span data-i18n="error.main_page"></span></a>
</div>
</div>
</div>
</div>
</section>
<!--==== End of Error Section ====-->
<!--============================
= Footer =
=============================-->
<?php
include_once ("footer.php");
?>
</body>
</html>