Passed
Push — master ( 75e191...a30d07 )
by Virginia
03:55
created
page-templates/template-cover.php 2 patches
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -24,9 +24,9 @@  discard block
 block discarded – undo
24 24
 		<?php if ( have_posts() ) : ?>
25 25
 
26 26
 			<?php
27
-			while ( have_posts() ) :
28
-				the_post();
29
-				?>
27
+               while ( have_posts() ) :
28
+                    the_post();
29
+                    ?>
30 30
 
31 31
 				<?php get_template_part( 'partials/content', 'page-cover' ); ?>
32 32
 
@@ -41,15 +41,15 @@  discard block
 block discarded – undo
41 41
 	<?php lsx_content_after(); ?>
42 42
 
43 43
 	<?php
44
-	if ( is_singular( 'post' ) ) {
45
-		lsx_post_nav();
46
-	}
47
-	?>
44
+     if ( is_singular( 'post' ) ) {
45
+          lsx_post_nav();
46
+     }
47
+     ?>
48 48
 	<?php
49
-	if ( comments_open() ) {
50
-		comments_template();
51
-	}
52
-	?>
49
+     if ( comments_open() ) {
50
+          comments_template();
51
+     }
52
+     ?>
53 53
 
54 54
 </div><!-- #primary -->
55 55
 
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@  discard block
 block discarded – undo
21 21
 
22 22
 		<?php lsx_content_top(); ?>
23 23
 
24
-		<?php if ( have_posts() ) : ?>
24
+		<?php if (have_posts()) : ?>
25 25
 
26 26
 			<?php
27
-			while ( have_posts() ) :
27
+			while (have_posts()) :
28 28
 				the_post();
29 29
 				?>
30 30
 
31
-				<?php get_template_part( 'partials/content', 'page-cover' ); ?>
31
+				<?php get_template_part('partials/content', 'page-cover'); ?>
32 32
 
33 33
 			<?php endwhile; ?>
34 34
 
@@ -41,12 +41,12 @@  discard block
 block discarded – undo
41 41
 	<?php lsx_content_after(); ?>
42 42
 
43 43
 	<?php
44
-	if ( is_singular( 'post' ) ) {
44
+	if (is_singular('post')) {
45 45
 		lsx_post_nav();
46 46
 	}
47 47
 	?>
48 48
 	<?php
49
-	if ( comments_open() ) {
49
+	if (comments_open()) {
50 50
 		comments_template();
51 51
 	}
52 52
 	?>
Please login to merge, or discard this patch.