forked from colorlabsproject/lensa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
32 lines (26 loc) · 922 Bytes
/
page.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
<?php get_header(); ?>
<div class="lensarow">
<header class="page-heading block-background block-inner">
<h3><?php the_title(); ?></h3>
<div class="minimize"></div>
</header><!-- .page-heading -->
<div class="main-content block-background column col12">
<?php
if(have_posts()) : while(have_posts()): the_post();
?>
<div class="block-inner">
<article class="entry-post">
<div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages(array('before' => __('<p><strong>Pages:</strong>','colabsthemes'), 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div><!-- .entry-content -->
</article>
<?php comments_template(); ?>
</div><!-- .block-inner -->
<?php
endwhile;
endif;
?>
</div><!-- .main-content -->
</div>
<?php get_footer(); ?>