Created
July 30, 2013 19:08
-
-
Save apatton-cnet/6115872 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Page Template | |
* | |
* This template is the default page template. It is used to display content when someone is viewing a | |
* singular view of a page ('page' post_type) unless another page template overrules this one. | |
* @link http://codex.wordpress.org/Pages | |
* | |
* @package WooFramework | |
* @subpackage Template | |
*/ | |
get_header(); | |
?> | |
<!-- #content Starts --> | |
<?php woo_content_before(); ?> | |
<div id="content" class="col-full"> | |
<div id="main-sidebar-container"> | |
<!-- #main Starts --> | |
<?php woo_main_before(); ?> | |
<div id="main"> | |
<?php | |
woo_loop_before(); | |
if (have_posts()) { $count = 0; | |
while (have_posts()) { the_post(); $count++; | |
woo_get_template_part( 'content', 'page' ); // Get the page content template file, contextually. | |
wp_link_pages(); | |
} | |
} | |
woo_loop_after(); | |
?> | |
</div><!-- /#main --> | |
<?php woo_main_after(); ?> | |
<?php get_sidebar(); ?> | |
</div><!-- /#main-sidebar-container --> | |
<?php get_sidebar( 'alt' ); ?> | |
</div><!-- /#content --> | |
<?php woo_content_after(); ?> | |
<?php get_footer(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment