Add Playwright coverage for inner page layout at all viewports

This commit is contained in:
Keith Solomon
2026-07-01 11:13:34 -05:00
parent cda3878169
commit 998619fa3f
4 changed files with 132 additions and 29 deletions
+6 -5
View File
@@ -22,13 +22,14 @@ if ( hasSidebar() ) {
?>
<article class="<?php echo esc_attr( $classes ); ?>">
<?php
// Centered intro section between the hero and the body content.
if ( get_field( 'intro' ) ) {
get_template_part( 'views/partials/page-intro' );
}
?>
<div class="entry-content <?php echo esc_attr( $clsEntry ); ?>">
<?php
// Centered intro section beneath the hero (rendered by header.php).
if ( get_field( 'intro' ) ) {
get_template_part( 'views/partials/page-intro' );
}
// Page body content
if ( have_posts() ) {
while ( have_posts() ) {