-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
executable file
·45 lines (42 loc) · 1.38 KB
/
Copy path404.php
File metadata and controls
executable file
·45 lines (42 loc) · 1.38 KB
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
39
40
41
42
43
44
45
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package Royale_News
*/
get_header();
/**
* Hook - royale_news_breadcrumb.
*
* @hooked royale_news_breadcrumb_action - 10
*/
do_action( 'royale_news_breadcrumb' );
?>
<div id="primary" class="content-area <?php royale_news_inner_container_class(); ?>">
<main id="main" class="site-main">
<div class="container">
<div class="row section">
<div class="col-md-8 col-md-offset-2">
<div class="row clearfix news-section">
<div class="col-md-12">
<div class="error-404 not-found">
<header class="page-header">
<h1 class="title-404"><?php echo esc_html__( '404', 'royale-news' ); ?></h1>
<h4 class="subtitle-404"><?php esc_html_e( 'Oops! That page can’t be found.', 'royale-news' ); ?></h4>
</header><!-- .page-header -->
<div class="page-content">
<p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'royale-news' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .page-content -->
</div><!-- .error-404.not-found -->
</div>
</div><!-- .row.clearfix.news-section -->
</div>
</div><!-- .row.section -->
</div><!-- .container -->
</main><!-- .main-container -->
</div>
<?php
get_footer();