forked from JKoblitz/DSMZCellDive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.php
More file actions
30 lines (21 loc) · 709 Bytes
/
error.php
File metadata and controls
30 lines (21 loc) · 709 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
<?php if ($error == 404) { ?>
<div class="content">
<div class="row hero text-center text-lg-left">
<div class="col-lg-6 text text-right">
<div class="ml-auto">
<p class="margin-top-s">
We looked really closely,<br>
but we could not find <br>
what you are looking for.
</p>
<a class="btn btn-primary btn-lg" href="<?= ROOTPATH ?>/"><i class="far fa-house"></i> Go home</a>
</div>
</div>
<div class="col-lg-6 image text text-left">
<object alt="404" class="img-fluid mw-full" data="<?= ROOTPATH ?>/img/404.svg"></object>
</div>
</div>
</div>
<?php } else {
echo $error;
} ?>