-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
56 lines (39 loc) · 1.14 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
/**
* @package WordPress
* @subpackage Default_Theme
*/
get_header();
?>
<!-- / banner container \ -->
<section id="bannerCntr">
<!-- / inner box \ -->
<article class="innerbannerBox" style="background: url(<?php if(get_field('banner_image')): ?><?php the_field('banner_image'); ?><?php else: ?><?php the_field('banner_image',7); ?><?php endif; ?>) no-repeat top center / cover;">
<div class="mycontainer">
<div class="text">
<h2><?php _e('Error 404 - Not Found'); ?></h2>
</div>
</div>
</article>
<!-- \ banner box / -->
</section>
<!-- \ banner container / -->
<!-- / middle container \ -->
<section id="middleCntr">
<!-- / breadcrumb box \ -->
<article class="breadcrumbBox">
<div class="mycontainer">
<?php if(function_exists('bcn_display')){ bcn_display(); }?>
</div>
</article>
<!-- \ breadcrumb box / -->
<!-- BEGIN: content area -->
<article class="contentArea">
<div class="mycontainer">
<?php the_content(); ?>
</div>
</article>
<!-- END: content area -->
</section>
<!-- \ middle container / -->
<?php get_footer(); ?>