Passed
Push — dev ( 3be0f0...ce7a97 )
by Eric
02:17
created
header.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,6 +42,6 @@
 block discarded – undo
42 42
 
43 43
 	<?php get_template_part( 'components/navigation/navigation', 'primary' ); ?>
44 44
 
45
-	<?php if( is_front_page()) { get_template_part( 'components/header/banner', 'hero' ); } ?>
45
+	<?php if ( is_front_page() ) { get_template_part( 'components/header/banner', 'hero' ); } ?>
46 46
 
47 47
 	<div id="main" class="site-content container <?php bitsy_content_class(); ?>" role="main">
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,11 @@
 block discarded – undo
27 27
         <?php
28 28
 			if ( is_front_page() || is_home() ) : ?>
29 29
 			<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
30
-		<?php else : ?>
31
-			<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
30
+		<?php else {
31
+	: ?>
32
+			<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) );
33
+}
34
+?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
32 35
 		<?php
33 36
 		endif; ?>
34 37
 		<?php $description = get_bloginfo( 'description', 'display' );
Please login to merge, or discard this patch.