19 lines
No EOL
307 B
PHP
19 lines
No EOL
307 B
PHP
<?php get_header(); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-12">
|
|
|
|
<?php
|
|
if ( have_posts() ) : while ( have_posts() ) : the_post();
|
|
|
|
get_template_part( 'content', get_post_format() );
|
|
|
|
endwhile; endif;
|
|
?>
|
|
|
|
</div> <!-- /.col -->
|
|
|
|
</div> <!-- /.row -->
|
|
|
|
<?php get_footer(); ?>
|