forked from Codeinwp/lawyeria-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
39 lines (37 loc) · 1.42 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
39
<?php
/**
* The template for displaying 404.
*
* @package lawyeria-lite
*/
get_header();
?>
<section class="wide-nav">
<div class="wrapper">
<?php
if ( get_theme_mod( 'lawyeria_lite_404_title','404 Error' ) ) {
echo '<h3>';
echo get_theme_mod( 'lawyeria_lite_404_title','404 Error' );
echo '</h3>';
}
?>
</div><!--/div .wrapper-->
</section><!--/section .wide-nav-->
</header>
<section id="content">
<div class="wrapper cf">
<div id="posts">
<div class="post">
<div class="post-excerpt">
<?php
if ( get_theme_mod( 'lawyeria_lite_404_content','Oops, I screwed up and you discovered my fatal flaw. Well, we\'re not all perfect, but we try. Can you try this again or maybe visit our <a title="themeIsle" href="'. home_url() .'">Home Page</a> to start fresh. We\'ll do better next time.' ) ) {
echo get_theme_mod( 'lawyeria_lite_404_content','Oops, I screwed up and you discovered my fatal flaw. Well, we\'re not all perfect, but we try. Can you try this again or maybe visit our <a title="themeIsle" href="'. home_url() .'">Home Page</a> to start fresh. We\'ll do better next time.' );
}
?>
</div><!--/.post-excerpt-->
</div><!--/div .post-->
</div><!--/div #posts-->
<?php get_sidebar(); ?>
</div><!--/div .wrapper-->
</section><!--/section #content-->
<?php get_footer(); ?>