Skip to content

Instantly share code, notes, and snippets.

@studiomohawk
Created July 25, 2010 07:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save studiomohawk/489383 to your computer and use it in GitHub Desktop.
Save studiomohawk/489383 to your computer and use it in GitHub Desktop.
<section>
<div class="section_inner grid_8 push_4">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article id="post-<?php the_ID() ?>" <?php post_class('mod'); ?>>
<div class="inner">
<header>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
</header>
<div class="bd the_excerpt"><?php the_excerpt(); ?></div>
</div><!-- class="inner" -->
</article><!-- class="mod" -->
<?php endwhile; endif; ?>
</div><!-- section_inner -->
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment