File: //old_home_backup/vinylsingles.co.uk/public_html/wp-content/themes/aadya/404.php
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package Aadya
* @subpackage Aadya
* @since Aadya 1.0.0
*/
get_header(); ?>
<?php
$aadya_layout = of_get_option('page_layouts');
$aadya_col = aadya_get_content_cols();
?>
<?php
if($aadya_layout == "sidebar-content" || $aadya_layout == "sidebar-content-sidebar") {
get_sidebar('left');
}
if($aadya_layout == "content-sidebar" || $aadya_layout == "sidebar-content") {
$aadya_smcol = 8;
} elseif($aadya_layout == "sidebar-content-sidebar" || $aadya_layout == "content-sidebar-sidebar") {
$aadya_smcol = 6;
}
?>
<div class="col-xs-12 col-sm-<?php echo $aadya_smcol;?> col-md-<?php echo $aadya_col;?>" role="content">
<div id="primary" class="site-content">
<div id="content" role="main">
<article id="post-0" class="post error404 no-results not-found">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'This is somewhat embarrassing, isn’t it?', 'aadya' ); ?></h1>
</header>
<div class="entry-content">
<p><?php _e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'aadya' ); ?></p>
<div class="row">
<div class="col-md-6">
<?php get_search_form(); ?>
</div>
</div>
</div><!-- .entry-content -->
</article><!-- #post-0 -->
</div><!-- #content -->
</div><!-- #primary -->
</div><!-- .col-md-<?php echo $aadya_col;?> -->
<?php
if($aadya_layout == "content-sidebar-sidebar") {
get_sidebar('left');
}
?>
<?php
if($aadya_layout == "content-sidebar" ||
$aadya_layout == "sidebar-content-sidebar" ||
$aadya_layout == "content-sidebar-sidebar") {
get_sidebar();
}
?>
<?php get_footer(); ?>