This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
OriginalHouse_Web/src/wp-content/themes/originalhouse/index.php

33 lines
987 B
PHP
Raw Normal View History

<?php get_header(); ?>
<?php global $woo_options; ?>
<div id="content" class="col-full">
<div id="main" class="fullwidth">
<?php $paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1; query_posts( "post_type=post&paged=$paged" ); ?>
<?php if ( have_posts() ) { $count = 0; ?>
<?php if ( $woo_options[ 'woo_home_intro' ] && is_home() && $paged == 1 ) { ?>
<div id="intro">
<p><?php echo $woo_options[ 'woo_home_intro' ]; ?></p>
</div>
<?php } ?>
<div id="blog-title">
<h3><?php echo get_bloginfo('title'); ?> <?php _e('Blog', 'woothemes'); ?></h3>
</div><!--/#blog-title -->
<?php
}
?>
<?php woo_pagenav(); ?>
</div><!-- /#main -->
</div><!-- /#content -->
<?php get_footer(); ?>