-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path404.php
31 lines (20 loc) · 804 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
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package presscore
* @since presscore 0.1
*/
// File Security Check
if ( ! defined( 'ABSPATH' ) ) { exit; }
get_header(); ?>
<!-- Content -->
<div id="content" class="content" role="main" style="min-height: 500px; text-align:center">
<article id="post-0" class="post error404 not-found">
<h1 class="entry-title"><?php _e( 'Oops! That page can’t be found.', 'the7mk2' ); ?></h1>
<p><?php _e( 'It looks like nothing was found at this location. Maybe try to use a search?', 'the7mk2' ); ?></p>
<?php get_search_form(); ?>
</article><!-- #post-0 .post .error404 .not-found -->
</div><!-- #content .site-content -->
<?php do_action('presscore_after_content'); ?>
<?php get_footer(); ?>