-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
51 lines (45 loc) · 1.43 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
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package WordPress
* @subpackage FAU
* @since FAU 1.0
*/
get_header();
$error_hidedefaultnotice = get_theme_mod('advanced_error_sidebar_hidedefaultnotice');
?>
<div id="content">
<div class="content-container">
<div class="content-row">
<div class="errorpage-content ">
<main>
<h1 class="screen-reader-text"><?php echo __('Seite nicht gefunden','fau'); ?></h1>
<?php if (empty($error_hidedefaultnotice)) { ?>
<div class="error-notice alert clearfix clear alert-warning">
<p class="hinweis">
<strong><?php _e('Es tut uns leid.','fau'); ?></strong>
</p>
<p>
<?php _e('Die von Ihnen aufgerufene Seite existiert nicht oder ihre Adresse hat sich durch Änderungen an der Seitenstruktur geändert.','fau'); ?>
</p>
</div>
<?php
}
get_template_part('template-parts/error', 'trysearch');
get_template_part('template-parts/search', 'helper');
?>
</main>
</div>
<?php if ( is_plugin_active( 'FAU-Fehlermeldungen/fau-fehlermeldungen.php' ) ) { ?>
<aside class="portalpage-sidebar" aria-label="<?php echo __('Sidebar','fau');?>">
<?php
echo do_shortcode('[fau_fehlermeldungen type="404" fulltext="false" ]');
?>
</aside>
<?php } ?>
</div>
</div>
</div>
<?php
get_footer();