-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
55 lines (43 loc) · 1.34 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
<?php
/**
* The template for displaying the 404-page.
*
* BYMARC
*
*/
?>
<?php get_header(); ?>
<section class="stage small">
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-12">
<div class="image">
<div class="container">
<div class="row">
<div class="col-12">
<h1 class="h1-recipe"><span>Error 404</span></h1>
</div>
</div>
</div>
<div class="img_overlay"></div>
<img src="<?= get_template_directory_uri() ?>/dist/img/footer_bg.jpg" />
</div>
</div>
</div>
</div>
</section>
<?php get_template_part('template-parts/content/breadcrumb') ?>
<section id="page404">
<div class="container">
<div class="row justify-content-center">
<div class="col-12">
<h2>Upps, diese Seite existiert leider nicht.</h2>
<p> Die gewünschte Seite konnte leider nicht gefunden werden. </p>
<p>
<a href="/" class="btn btn-primary">zur Startseite!</a>
</p>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>