-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpage.php
More file actions
31 lines (21 loc) · 777 Bytes
/
page.php
File metadata and controls
31 lines (21 loc) · 777 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
<?php
/**
* The Template for Pages.
*
*
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*/
get_header(); ?>
<?php // Main Content ?>
<div id="content" class="<?php print cogito_wp_col_class( 'content' ); ?>" role="main">
<?php cogito_content_top(); cogito_content_top_page(); ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'loop', 'page' ); ?>
<?php endwhile; // end of the loop. ?>
<?php cogito_content_bottom(); cogito_content_bottom_page(); ?>
</div>
<?php //Get the Left Sidebar (if there is one) ?>
<?php get_sidebar( 'left' ); ?>
<?php // Right Sidebar (if there is one) ?>
<?php get_sidebar( 'right' ); ?>
<?php get_footer(); ?>