-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.php
More file actions
39 lines (31 loc) · 772 Bytes
/
page.php
File metadata and controls
39 lines (31 loc) · 772 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
29
30
31
32
33
34
35
36
37
38
39
<?php
/**
* Template Name: Template - Full Width
*
* A Full Width custom page template without sidebar.
* @package WordPress
*/
get_header(); ?>
<?php if((is_page() || is_single()) && !is_front_page()): ?>
<div class="row">
<div class="sixteen columns">
<?php boc_breadcrumbs(); ?>
<div class="page_heading"><h1><?php the_title(); ?></h1></div>
</div>
</div>
<?php else: ?>
<div class="h15"></div>
<?php endif; ?>
<div class="row">
<!-- Post -->
<div <?php post_class(''); ?> id="post-<?php the_ID(); ?>" >
<div class="sixteen columns">
<?php while (have_posts()) : the_post(); ?>
<?php the_content() ?>
<?php wp_link_pages(); ?>
<?php endwhile; ?>
</div>
</div>
<!-- Post :: END -->
</div>
<?php get_footer(); ?>