-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
30 lines (28 loc) · 806 Bytes
/
Copy path404.php
File metadata and controls
30 lines (28 loc) · 806 Bytes
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
<?php get_header();
global $marketeer_data;
?>
<!-- top bar with breadcrumb -->
<div class = "outerpagewrap">
<div class="pagewrap">
<div class="pagecontent">
<div class="pagecontentContent">
<p><?php echo marketeer_breadcrumb(); ?></p>
</div>
</div>
</div>
</div>
<!-- main content start -->
<div id="mainwrap">
<div id="main" class="clearfix">
<div class="content fullwidth errorpage">
<div class="postcontent">
<h2><?php echo marketeer_security($marketeer_data['errorpagetitle']) ?></h2>
<div class="posttext">
<?php echo marketeer_security($marketeer_data['errorpage']) ?>
</div>
<div class="homeIcon"><a href="<?php echo esc_url(home_url('/')); ?>"></a></div>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>