Skip to content

Instantly share code, notes, and snippets.

@taras
Created November 21, 2012 22:29
Show Gist options
  • Save taras/4128279 to your computer and use it in GitHub Desktop.
Save taras/4128279 to your computer and use it in GitHub Desktop.
Twitter Bootstrap single.php
<?php get_header(); ?>
<div id="content-wrap" class="container-fluid">
<div class="row-fluid">
<?php if ( have_posts() ) : ?>
<div id="content" class="span8">
<?php while ( have_posts() ) : the_post(); ?>
<div class="post <?php echo get_post_type() ?> row-fluid">
<?php get_template_part( get_post_type() ) ?>
</div>
<?php endwhile; ?>
</div>
<?php endif; ?>
<div id="right-sidebar" class="span4">
<?php get_sidebar() ?>
</div>
</div>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment