Updates for part 2

This commit is contained in:
Tania 2016-01-14 02:48:43 -06:00
parent fb8eaa1fda
commit 8c83a49a7c
15 changed files with 243 additions and 47 deletions

16
single.php Normal file
View file

@ -0,0 +1,16 @@
<?php get_header(); ?>
<div class="row">
<div class="col-sm-12">
<?php
if ( have_posts() ) : while ( have_posts() ) : the_post();
get_template_part( 'content-single', get_post_format() );
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; endif;
?>
</div> <!-- /.col -->
</div> <!-- /.row -->
<?php get_footer(); ?>