-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.php
23 lines (20 loc) · 802 Bytes
/
404.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
get_header(); ?>
<section id="section-block" class="error-page">
<div class="ui container">
<div class="ui two column stackable grid">
<div class="column">
<div class="error-404 text-center">
<h1><?php esc_attr_e('4','quality'); ?><i class="fa fa-frown-o"></i><?php esc_attr_e('4','quality'); ?> </h1>
<h2><?php _e('Oops! Page not found','quality'); ?></h2>
<p><?php _e('We are sorry, but the page you are looking for does not exist.','quality'); ?></p>
<div class="btn-block text-center">
<a href="<?php echo esc_html(site_url());?>" class="btn-large"><i class="fa fa-hand-o-left text-white"></i><?php _e('Back to Homepage','quality'); ?></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- 404 Error Section -->
<?php get_footer(); ?>