-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
38 lines (29 loc) · 1.07 KB
/
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
33
34
35
36
37
38
<?php get_header(); ?>
<?php get_template_part( 'template-part', 'topnav' ); ?>
<?php get_template_part( 'template-part', 'head' ); ?>
<?php
if ( get_theme_mod( 'breadcrumbs-check', 1 ) != 0 ) {
eleganto_breadcrumb();
}
?>
<!-- start content container -->
<div class="row container rsrc-content">
<?php get_sidebar( 'left' ); ?>
<div class="col-md-<?php eleganto_main_content_width(); ?> rsrc-main">
<div class="rsrc-post-content">
<div class="error-template text-center">
<h1><?php esc_html_e( 'Oops!', 'eleganto' ); ?></h1>
<h2><?php esc_html_e( '404 Not Found', 'eleganto' ); ?></h2>
<p class="error-details">
<?php esc_html_e( 'Sorry, an error has occured, Requested page not found!', 'eleganto' ); ?>
</p>
<div class="error-actions">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" class="btn btn-primary btn-lg"><span class="fa fa-home"></span><?php esc_html_e( ' Take Me Home', 'eleganto' ); ?></a>
</div>
</div>
</div>
</div>
<?php get_sidebar( 'right' ); ?>
</div>
<!-- end content container -->
<?php get_footer(); ?>