-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy path404.php
35 lines (26 loc) · 842 Bytes
/
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
<?php
/**
* The 404 "Not Found" template. Used when WordPress cannot find a post or page that matches the query.
*
* @package Mayer
* @since 1.0.0
*/
?>
<?php get_header(); ?>
<div id="primary-wrapper">
<div id="primary" class="container">
<?php if ( is_rtl() || mayer_has_left_sidebar() ) { ?>
<?php get_sidebar(); ?>
<?php } ?>
<main id="main" class="site-main col-lg-8 col-md-8" role="main">
<?php if ( function_exists( 'yoast_breadcrumb' ) ) { ?>
<?php yoast_breadcrumb( '<p id="breadcrumbs">', '</p>' ); ?>
<?php } ?>
<?php get_template_part( 'partials/no-content' ); ?>
</main><!-- #main -->
<?php if ( ! is_rtl() && ! mayer_has_left_sidebar() ) { ?>
<?php get_sidebar(); ?>
<?php } ?>
</div><!-- #primary -->
</div><!-- /#primary-wrapper -->
<?php get_footer(); ?>