forked from VisualComposer/visual-composer-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
31 lines (28 loc) · 1.21 KB
/
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
<?php
/**
* The template part for displaying 404 error page
*
* @package WordPress
* @subpackage Visual Composer Starter
* @since Visual Composer Starter 1.0
*/
get_header(); ?>
<div class="<?php echo esc_attr( visualcomposerstarter_get_content_container_class() ); ?>">
<div class="content-wrapper">
<div class="row">
<div class="<?php echo esc_attr( visualcomposerstarter_get_maincontent_block_class() ); ?>">
<div class="main-content">
<div class="entry-content error-404 not-found">
<h1><?php esc_html_e( 'Oops! That page can’t be found.', 'visual-composer-starter' ); ?></h1>
<p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try a search?', 'visual-composer-starter' ); ?></p>
<?php get_search_form(); ?>
</div><!--.entry-content-->
</div><!--.main-content-->
</div><!--.<?php echo esc_html( visualcomposerstarter_get_maincontent_block_class() ); ?>-->
<?php if ( visualcomposerstarter_get_sidebar_class() ) : ?>
<?php get_sidebar(); ?>
<?php endif; ?>
</div><!--.row-->
</div><!--.content-wrapper-->
</div><!--.<?php echo esc_html( visualcomposerstarter_get_content_container_class() ); ?>-->
<?php get_footer();