Updates for part 2
This commit is contained in:
parent
fb8eaa1fda
commit
8c83a49a7c
15 changed files with 243 additions and 47 deletions
16
single.php
Normal file
16
single.php
Normal 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(); ?>
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue