-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpage.php
More file actions
29 lines (19 loc) · 704 Bytes
/
Copy pathpage.php
File metadata and controls
29 lines (19 loc) · 704 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
<?php
/**
* The template for displaying all pages.
*
* @since Leaf 1.0
*/
get_header(); ?>
<div id="primary" class="site-content <?php echo leaf_grid_width( 'content' ); ?> columns">
<div id="content" role="main">
<?php leaf_page_before(); // Before page hook. ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'page' ); ?>
<?php comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>
<?php leaf_page_after(); // After page hook. ?>
</div><!-- #content -->
</div><!-- #primary .site-content .<?php echo leaf_grid_width( 'content' ); ?> .columns -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>