forked from CCI-MOC/moc-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
20 lines (19 loc) · 784 Bytes
/
404.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
/**
* The template for displaying 404 pages (Not Found).
* @package etalon
* by KeyDesign
*/
?>
<?php get_header(); ?>
<section class="page-404">
<div class="container">
<div class="row" >
<h2 class="section-heading"><?php if (isset($redux_ThemeTek['tek-404-title'])) { echo esc_attr($redux_ThemeTek['tek-404-title']); } else { echo "Page 404"; } ?></h2>
<span class="separator"></span>
<p class="section-subheading"><?php echo esc_attr($redux_ThemeTek['tek-404-subtitle']) ?></p>
<a href="<?php echo esc_url(get_site_url()); ?>" class="tt_button"><?php if (isset($redux_ThemeTek['tek-404-back'])) { echo esc_attr($redux_ThemeTek['tek-404-back']); } else { echo "Back to Homepage"; } ?></a>
</div>
</div>
</section>
<?php get_footer(); ?>