-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path404.php
36 lines (33 loc) · 858 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
28
29
30
31
32
33
34
35
36
<?php
/*
* 404
*/
get_header();
/**
* @hooked ascend_page_title - 20
*/
do_action('ascend_page_title_container');
?>
<div id="content" class="container">
<div class="row">
<div class="main <?php echo esc_attr( ascend_main_class() ); ?>" id="ktmain" role="main">
<div class="kt-404-alert entry-content">
<h3><?php esc_html_e( 'Sorry, but the page you were trying to view does not exist.', 'ascend' ); ?></h2>
<p><?php esc_html_e( 'It looks like this was the result of either a mistyped address or an out-of-date link', 'ascend' ); ?></p>
<?php get_search_form(); ?>
</div>
</div><!-- /.main -->
<?php
/**
* Sidebar
*/
if (ascend_display_sidebar()) :
get_sidebar();
endif; ?>
</div><!-- /.row-->
</div><!-- /.content -->
<?php
/**
* Footer
*/
get_footer(); ?>