-
Notifications
You must be signed in to change notification settings - Fork 11
/
403.php
49 lines (45 loc) · 1.37 KB
/
403.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
<?php
/**
* The template for displaying 404 pages (Zugriff nicht erlaubt).
*
* @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 __('Zugriff nicht gestattet','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('Leider dürfen Sie auf diese Seite nicht zugreifen.','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="403" fulltext="false" ]');
?>
</aside>
<?php } ?>
</div>
</div>
</div>
<?php
get_footer();