Browse Source

Merge branch 'master' into try/stow-responsive-enhancement

Allan Cole 5 years ago
parent
commit
a9f907a157

+ 2 - 2
varia/archive.php

@@ -13,11 +13,11 @@ get_header();
 ?>
 
 	<section id="primary" class="content-area">
-		<main id="main" class="site-main responsive-max-width">
+		<main id="main" class="site-main">
 
 		<?php if ( have_posts() ) : ?>
 
-			<header class="page-header">
+			<header class="page-header responsive-max-width">
 				<?php
 					the_archive_title( '<h1 class="page-title">', '</h1>' );
 				?>

+ 2 - 2
varia/image.php

@@ -11,7 +11,7 @@ get_header();
 ?>
 
 	<section id="primary" class="content-area">
-		<main id="main" class="site-main responsive-max-width">
+		<main id="main" class="site-main">
 
 			<?php
 				// Start the loop.
@@ -25,7 +25,7 @@ get_header();
 					<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
 					</header><!-- .entry-header -->
 
-					<div class="entry-content responsive-max-width">
+					<div class="entry-content">
 
 						<figure class="entry-attachment wp-block-image">
 						<?php

+ 1 - 1
varia/page.php

@@ -13,7 +13,7 @@ get_header();
 ?>
 
 	<section id="primary" class="content-area">
-		<main id="main" class="site-main responsive-max-width">
+		<main id="main" class="site-main">
 
 			<?php
 

+ 1 - 1
varia/search.php

@@ -13,7 +13,7 @@ get_header();
 ?>
 
 	<section id="primary" class="content-area">
-		<main id="main" class="site-main responsive-max-width">
+		<main id="main" class="site-main">
 
 		<?php if ( have_posts() ) : ?>
 

+ 1 - 1
varia/template-parts/content/content-none.php

@@ -12,7 +12,7 @@
 ?>
 
 <section class="no-results not-found">
-	<header class="page-header">
+	<header class="page-header responsive-max-width">
 		<h1 class="page-title"><?php _e( 'Nothing Found', 'varia' ); ?></h1>
 	</header><!-- .page-header -->
 

+ 1 - 1
varia/template-parts/content/content-page.php

@@ -13,7 +13,7 @@
 
 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 
-	<header class="entry-header">
+	<header class="entry-header responsive-max-width">
 		<?php get_template_part( 'template-parts/header/entry', 'header' ); ?>
 	</header>