Skip to content

Commit

Permalink
Fixed divs around bread crumbs and cleaned up formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelbaker committed Nov 14, 2012
1 parent 5d2f253 commit b42477b
Showing 1 changed file with 30 additions and 32 deletions.
62 changes: 30 additions & 32 deletions index.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?php
/**
*
* Description: Default Index template to display loop of blog posts
*
* @package WordPress
Expand All @@ -9,38 +8,37 @@
*/

get_header(); ?>
<div class="container">
<div class="row">
<div class="container">
<?php if (function_exists('bootstrapwp_breadcrumbs')) bootstrapwp_breadcrumbs(); ?>
</div><!--/.container -->
<?php if ( function_exists( 'bootstrapwp_breadcrumbs' ) ) bootstrapwp_breadcrumbs(); ?>
</div><!--/.row -->
<div class="container">

<div class="row content">
<div class="span8">
<?php
// Blog post query
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts( array( 'post_type' => 'post', 'paged'=>$paged, 'showposts'=>0) );
if (have_posts()) : while ( have_posts() ) : the_post(); ?>
<div <?php post_class(); ?>>
<a href="<?php the_permalink(); ?>" title="<?php the_title();?>"><h3><?php the_title();?></h3></a>
<p class="meta"><?php echo bootstrapwp_posted_on();?></p>
<div class="row">
<div class="span2"><?php // Checking for a post thumbnail
if ( has_post_thumbnail() ) ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
<?php the_post_thumbnail();?></a>
</div><!-- /.span2 -->
<div class="span6">
<?php the_excerpt();?>
</div><!-- /.span6 -->
</div><!-- /.row -->
<hr />
</div><!-- /.post_class -->
<?php endwhile; endif; ?>
<?php bootstrapwp_content_nav('nav-below');?>
<div class="row content">
<div class="span8">
<?php
// Blog post query
$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
query_posts( array( 'post_type' => 'post', 'paged'=>$paged, 'showposts'=>0 ) );
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div <?php post_class(); ?>>
<a href="<?php the_permalink(); ?>" title="<?php the_title();?>"><h3><?php the_title();?></h3></a>
<p class="meta"><?php echo bootstrapwp_posted_on();?></p>
<div class="row">
<div class="span2"><?php // Checking for a post thumbnail
if ( has_post_thumbnail() ) ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
<?php the_post_thumbnail();?></a>
</div><!-- /.span2 -->
<div class="span6">
<?php the_excerpt();?>
</div><!-- /.span6 -->
</div><!-- /.row -->
<hr />
</div><!-- /.post_class -->
<?php endwhile; endif; ?>

<?php bootstrapwp_content_nav( 'nav-below' );?>
</div><!-- /.span8 -->

</div><!-- /.span8 -->
<?php get_sidebar('blog'); ?>
<?php get_footer(); ?>
<?php get_sidebar( 'blog' ); ?>
<?php get_footer(); ?>

0 comments on commit b42477b

Please sign in to comment.