Skip to content

Commit

Permalink
fixed missing closing div, removed unused span and formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
grayghostvisuals committed Jun 8, 2012
1 parent 5620600 commit 28af18e
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions category.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@


<?php if( have_posts() ) : while( have_posts() ) : the_post()?> <?php if( have_posts() ) : while( have_posts() ) : the_post()?>
<article <?php post_class(); ?> id="post-<?php the_ID(); ?>"> <article <?php post_class(); ?> id="post-<?php the_ID(); ?>">

<header> <header>
<h1><span><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?> blog post entry"><?php the_title(); ?></a></span></h1> <h1><span><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?> blog post entry"><?php the_title(); ?></a></span></h1>
<?php get_template_part( 'inc/meta' ); ?> <?php get_template_part( 'inc/meta' ); ?>
Expand All @@ -13,7 +14,10 @@
<?php the_content( 'read more' ); ?> <?php the_content( 'read more' ); ?>


<footer> <footer>
<div id="comments-count"><a href="<?php comments_link(); ?>"><?php comments_number( '0', '1', '%' ); ?>Comments</a> <div id="comments-count">
<a href="<?php comments_link(); ?>"><?php comments_number( '0', '1', '%' ); ?>Comments</a>
</div>

<ul> <ul>
<li class="tags"> <li class="tags">
<?php _e( 'Tagged:' );?> <?php _e( 'Tagged:' );?>
Expand All @@ -23,6 +27,7 @@
</li> </li>
</ul> </ul>
</li> </li>

<li class="cats"> <li class="cats">
<?php _e( 'Filed under:' );?> <?php _e( 'Filed under:' );?>
<ul> <ul>
Expand All @@ -41,7 +46,9 @@
<?php else : //if no posts were found do this ?> <?php else : //if no posts were found do this ?>
<p><?php echo ( 'Holy smokes! This is totally crazy. No posts match anything even remotely close to that in our database. Sorry Mon Frere, try again' ); ?></p> <p><?php echo ( 'Holy smokes! This is totally crazy. No posts match anything even remotely close to that in our database. Sorry Mon Frere, try again' ); ?></p>
<?php endif; //end if have_posts condition ?> <?php endif; //end if have_posts condition ?>
<p><?php posts_nav_link( '&#8734;', '&laquo; Go Forward In Time', 'Go Back In Time &raquo;' ); ?></p>
<p><?php posts_nav_link( '&#8734;', '&larr; Go Forward In Time', 'Go Back In Time &rarr;' ); ?></p>

</section> </section>


<!-- sidebar --> <!-- sidebar -->
Expand Down

0 comments on commit 28af18e

Please sign in to comment.