This is committed from BBEdit -- initial file set up is ready

This commit is contained in:
Jacob Haddon 2018-11-13 21:41:39 -05:00
parent 5f94a5e22e
commit c4d83fc129

View File

@ -0,0 +1,11 @@
<?php
get_header();
if ( have_posts() ) : while ( have_posts() ) : the_post();
the_content();
endwhile;
else :
_e( 'Sorry, no posts matched your criteria.', 'textdomain' );
endif;
//get_sidebar();
get_footer();
?>