-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-fullwidth.php
39 lines (31 loc) · 992 Bytes
/
page-fullwidth.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
/**
* Template Name: Full Width
*/
?>
<?php get_header(); ?>
<div class="grid-13">
<div class="subcol" style="padding-left: 0; border-left: none">
<div id="content_start" style="display : none ; "></div>
<?php
get_template_part( 'templates/partials/alert' );
if (have_posts()) : while (have_posts()) : the_post();
$tagline = get_post_meta($post->ID, 'tagline', $single = true);
$side = get_post_meta($post->ID, 'side', $single = true);
get_template_part( 'templates/partials/title' );
?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="entry">
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
</div>
<?php
if (get_site_option('uri_comments') ) {
comments_template();
}
?>
<?php endwhile; endif; ?>
</div>
</div>
<?php get_footer(); ?>