forked from Themekraft/_tk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
28 lines (19 loc) · 664 Bytes
/
404.php
File metadata and controls
28 lines (19 loc) · 664 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
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package _tk
*/
get_header(); ?>
<?php // add the class "panel" below here to wrap the content-padder in Bootstrap style ;) ?>
<section class="content-padder error-404 not-found">
<header>
<h2 class="page-title"><?php _e( 'Oops! Something went wrong here.', '_tk' ); ?></h2>
</header><!-- .page-header -->
<div class="page-content">
<p><?php _e( 'Nothing could be found at this location. Maybe try a search?', '_tk' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .page-content -->
</section><!-- .content-padder -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>