*/ global $canuck_include_breadcrumbs,$canuck_exclude_page_title,$canuck_page_title; $layout_option = get_theme_mod( 'canuck_404_layout', 'right_sidebar' ); $canuck_include_breadcrumbs = get_theme_mod( 'canuck_breadcrumbs' ) ? true : false; $canuck_exclude_page_title = get_theme_mod( 'canuck_404_title' ) ? true : false; $canuck_page_title = esc_html__( '404 Error - Page Not Found', 'canuck' ); get_header( 'no-feature' ); get_template_part( '/template-parts/partials', 'page-title-no-post' ); ?>
'; get_template_part( '/template-parts/sidebars/sidebar', 'error-404-a' ); echo ''; echo '
'; get_template_part( '/template-parts/partials', '404-content' ); echo '
'; } elseif ( 'both_sidebars' === $layout_option ) { echo ''; echo '
'; get_template_part( '/template-parts/partials', '404-content' ); echo '
'; echo ''; } elseif ( 'fullwidth' === $layout_option ) { echo '
'; get_template_part( '/template-parts/partials', '404-content' ); get_search_form(); get_template_part( '/template-parts/partials', 'recent-posts' ); echo '
'; } else { echo '
'; get_template_part( '/template-parts/partials', '404-content' ); echo '
'; echo ''; } ?>