Initial commit
This commit is contained in:
commit
cec737f411
9 changed files with 307 additions and 0 deletions
21
page.php
Normal file
21
page.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?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(); ?>
|
Loading…
Add table
Add a link
Reference in a new issue