-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
26 lines (19 loc) · 833 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
<?php get_header(); ?>
<main id="content" class="content">
<?php do_action( 'aperitto_main_content_404_inner_begin' ); ?>
<?php do_action( 'aperitto_before_page_404_article' ); ?>
<div class="post clearfix">
<h1><?php esc_html_e( 'Oops! That page can’t be found.', 'aperitto' ); ?></h1>
<?php do_action( 'aperitto_before_page_404_content_box' ); ?>
<div class="entry-box clearfix">
<p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try a search?', 'aperitto' ); ?></p>
<?php get_search_form(); ?>
</div>
<?php do_action( 'aperitto_after_page_404_content_box' ); ?>
</div>
<?php do_action( 'aperitto_after_page_404_article' ); ?>
<?php do_action( 'aperitto_main_content_404_inner_end' ); ?>
</main>
<!-- END #content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>