forked from rtCamp/rtpanel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
executable file
·32 lines (22 loc) · 841 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
<?php
/**
* The template for displaying 404 pages (Not Found)
*
* @package rtPanel
*
* @since rtPanel 2.0
*/
get_header(); ?>
<section id="content" role="main" class="rtp-grid-8">
<?php rtp_hook_begin_content(); ?>
<h1 class="post-title rtp-main-title"><?php _e( 'Not Found', 'rtPanel' ); ?></h1>
<?php rtp_hook_begin_post(); ?>
<div class="post-content clearfix rtp-not-found">
<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'rtPanel' ); ?></p>
<?php get_search_form(); ?>
</div>
<?php rtp_hook_end_post();?>
<?php rtp_hook_end_content(); ?>
</section><!-- #content -->
<?php rtp_hook_sidebar(); ?>
<?php get_footer(); ?>