themes-wordpress/seedlet/page.php
Jeff Ong 63f020a88f
Seedlet: fix landmark roles (#2395)
* Add main role to correct element. Remove nav role from ul.

* Remove aria-label from ul.

* Revert until we discuss.

* Rework aria-labels on navigation elements.
2020-08-27 10:45:39 -04:00

36 lines
740 B
PHP
Executable file

<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package Seedlet
* @since 1.0.0
*/
get_header();
?>
<section id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
/* Start the Loop */
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content/content-page' );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) {
comments_template();
}
endwhile; // End of the loop.
?>
</main><!-- #main -->
</section><!-- #primary -->
<?php
get_footer();