File: /home/mmickelson/theflexguy.com/wp-content/themes/hybrid/404.php
<?php
/**
 * 404 Template
 *
 * The 404 template is used when a reader visits an invalid URL on your site. By default,
 * the template will display a generic message. However, if the '404 Template' widget area
 * is active, its widgets will be displayed instead. This allows users to customize their error
 * pages in any way they want.
 *
 * @package Hybrid
 * @subpackage Template
 * @link http://codex.wordpress.org/Creating_an_Error_404_Page
 */
@header( 'HTTP/1.1 404 Not found', true, 404 );
get_header(); // Loads the header.php template. ?>
	<div id="content" class="hfeed content">
		<?php do_atomic( 'before_content' ); // hybrid_before_content ?>
		<?php if ( is_active_sidebar( 'error-404-template' ) ) : ?>
			<div id="utility-404" class="sidebar utility">
				<?php dynamic_sidebar( 'error-404-template' ); ?>
			</div><!-- #utility-404 .utility -->
		<?php else: ?>
			<div id="post-0" class="<?php hybrid_entry_class(); ?>">
				<h1 class="error-404-title entry-title"><?php _e( 'Not Found', 'hybrid' ); ?></h1>
				<div class="entry-content">
					<p>
					<?php printf( __( 'You tried going to %1$s, and it doesn\'t exist. All is not lost! You can search for what you\'re looking for.', 'hybrid' ), '<code>' . home_url( esc_url( $_SERVER['REQUEST_URI'] ) ) . '</code>' ); ?>
					</p>
					<?php get_search_form(); // Loads the searchform.php template. ?>
				</div><!-- .entry-content -->
			</div><!-- .hentry -->
		<?php endif; ?>
		<?php do_atomic( 'after_content' ); // hybrid_after_content ?>
	</div><!-- .content .hfeed -->
<?php get_footer(); // Loads the footer.php template. ?>