-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path404.php
More file actions
executable file
·38 lines (27 loc) · 934 Bytes
/
404.php
File metadata and controls
executable file
·38 lines (27 loc) · 934 Bytes
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
37
38
<?php
/**
* The Template for displaying 404 page.
*
* @package Feather
*/
get_header(); ?>
<div class="wrap container" role="document">
<div class="content row">
<main class="main col-sm-8" role="main">
<?php get_template_part( 'template-parts/page', 'header' ); ?>
<div class="alert alert-warning">
<?php _e( 'Sorry, but the page you were trying to view does not exist.', THEME_TEXTDOMAIN ); ?>
</div>
<p><?php _e( 'It looks like this was the result of either:', THEME_TEXTDOMAIN ); ?></p>
<ul>
<li><?php _e( 'a mistyped address', THEME_TEXTDOMAIN ); ?></li>
<li><?php _e( 'an out-of-date link', THEME_TEXTDOMAIN ); ?></li>
</ul>
<?php get_search_form(); ?>
</main><!--/ .main -->
<aside class="sidebar col-sm-4" role="complementary">
<?php get_sidebar(); ?>
</aside><!--/ .sidebar -->
</div><!--/ .content .row -->
</div><!--/ .wrap .container -->
<?php get_footer(); ?>