-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage_full.php
37 lines (27 loc) · 869 Bytes
/
page_full.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
<?php
/*
Template Name: Page Full-Width
*/
?>
<?php get_header(); ?>
<?php
if ( function_exists( 'get_option_tree') ) {
/* OPTIONS HERE */
}
$pagecustoms = getOptions();
if (isset($pagecustoms["header_title"])){$apex_htitle = $pagecustoms['header_title'];}else{$apex_htitle = "";}
?>
<!-- Page Title
================================================== -->
<div class="sixteen columns row divide notop">
<h3 class="titledivider"><?php echo $apex_htitle ?></h3>
<div class="dividerline"></div>
</div>
<!-- Content Holder -->
<div class="sixteen columns row content">
<?php if(have_posts()) : while(have_posts()) : the_post(); the_content(); endwhile; endif; ?><div class="clear"></div>
</div>
<!-- Space Adjuster
==================================================
<div class="sixteen columns bottomadjust"></div>-->
<?php get_footer(); ?>