forked from themejack/briar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
24 lines (20 loc) · 783 Bytes
/
Copy path404.php
File metadata and controls
24 lines (20 loc) · 783 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
<?php
/**
* The template for displaying 404 pages (not found).
*
* @package Briar
* @since 1.0
*/
get_header(); ?>
<div class="error-message">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="animated infinite pulse"><?php esc_html_e( '404', 'briar' ); ?></h2>
<?php /* translators: %s is home page url */ ?>
<p><?php printf( wp_kses( __( 'It\'s looking like you may have taken a wrong turn. <br> Don\'t worry, it happens to the best of us. <br> Now you can go back to <a href="%s">homepage</a>.', 'briar' ), array( 'a' => array( 'href' => true ) ) ), esc_url( get_home_url() ) ); ?></p>
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /.container -->
</div><!-- /.error message -->
<?php get_footer(); ?>