-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
33 lines (28 loc) · 812 Bytes
/
Copy path404.php
File metadata and controls
33 lines (28 loc) · 812 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
31
32
33
<?php
/**
* Template for displaying 404 pages (not found).
* Post type: none assigned
*
* @since 0.1.0
*/
// Exits if accessed directly.
if ( ! defined('ABSPATH')) {
exit;
}
get_header();
?>
<main id="content" class="content <?php
echo apply_filters('bitski-wp-theme/class/container', ['container-xl'], true); ?> pt-4 pb-5">
<!-- Content header -->
<header class="content-header mb-4">
<h1 class="entry-title"><?php
printf(
esc_html__('404 – Fehler bei Aufruf der Seite: %s', 'bitski-wp-theme'),
'<span class="text-body-secondary">' . esc_html('/' . $wp->request) . '</span>'
) ?></h1>
</header>
<?php
get_template_part('templates/pages/search-404/content/no-results'); ?>
</main>
<?php
get_footer(); ?>