updated basic HTML portions for better semantics

This commit is contained in:
Jacob Haddon
2024-02-18 11:35:39 -05:00
parent 0d83ea38a6
commit a90b2b0b62
4 changed files with 71 additions and 35 deletions

View File

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