-
Notifications
You must be signed in to change notification settings - Fork 0
/
page_full_width.php
43 lines (36 loc) · 996 Bytes
/
page_full_width.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
<?php
/*
Template Name: Full Width
*/
?>
<?php get_header(); ?>
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="row">
<div id="double-left-column" class="col-xs-12">
<?php while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class('post-wrapper'); ?>>
<div class="h1-wrapper">
<h1><?php the_title(); ?></h1>
</div>
<div class="post-content">
<?php
the_content();
wp_link_pages( array( 'before' => '<p><strong>' . __('Pages:', 'ipin') . '</strong>', 'after' => '</p>' ) );
edit_post_link(__('Edit Page', 'ipin'),'<p>[ ',' ]</p>');
?>
</div>
<div class="post-comments">
<div class="post-comments-wrapper">
<?php comments_template(); ?>
</div>
</div>
</div>
<?php endwhile; ?>
</div>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>