-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.php
27 lines (23 loc) · 894 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
<?php
/**
* Error 404 not found page.
*
* @package WordPress
* @subpackage Aalto_Blogs
* @since Official Aalto Blogs Theme 1.0
*/
get_header(); ?>
<div class="container">
<div class="row">
<?php $offset = is_active_sidebar( 'sidebar-1' ) ? '' : 'col-md-offset-2'; ?>
<div id="primary" class="content-area col-xs-12 col-md-8 <?php echo $offset; ?>">
<main id="main" class="site-main row masonry-grid" role="main">
<?php get_template_part( 'template-parts/content', 'none' ); ?>
</main><!-- end .site-main -->
</div><!-- end .content-area -->
<?php if ( get_theme_mod( 'front_layout' ) != 'grid' || get_theme_mod( 'single_layout' ) != 'wide' || get_theme_mod( 'page_layout' ) != 'wide' ) : ?>
<?php get_sidebar(); ?>
<?php endif; ?>
</div><!-- end .row -->
</div><!-- end .container -->
<?php get_footer(); ?>