-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
24 lines (21 loc) · 808 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
<?php get_header(); ?>
<div class="container">
<p><?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'devtheme' ); ?>
</p>
<?php get_search_form(); ?>
<div class="error-404 not-found">
<header class="page-header">
<h1 class="page-title"><?php _e( 'Oops! That page can’t be found.', 'devtheme' ); ?></h1>
</header><!-- .page-header -->
<img src="<?php echo get_template_directory_uri(); ?>/error_404.jpg" alt="error_404.jpg">
<div class="page-content">
</div><!-- .page-content -->
</div><!-- .error-404 -->
</div>
<!-- Bottom menu -->
<div class="bottom-menu">
<div class="menu">
<?php wp_nav_menu(array('theme_location' => 'bottommenu')); ?>
</div>
</div>
<?php get_footer(); ?>