-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.php
More file actions
21 lines (20 loc) · 729 Bytes
/
404.php
File metadata and controls
21 lines (20 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php get_header('alternative');
/*
*Template Name: 404 Page Template
*/
global $themeum_options;
?>
<section class="error-page-inner">
<div>
<div class="container">
<div class="row">
<div class="error-msg">
<h1 class="error-code"><?php esc_html_e( '404', 'eventum' ); ?></h1>
<p class="error-message"><?php esc_html_e( 'Component not found.', 'eventum' ); ?></p>
<a class="btn btn-success btn-lg" href="<?php echo esc_url( site_url() ); ?>" title="HOME"><?php esc_html_e( 'Go Back Home', 'eventum' ); ?></a>
</div>
</div>
</div>
</div>
</section>
<?php get_footer('alternative'); ?>