Completed
Push — master ( 97c69b...0ad0d3 )
by Md. Mozahidur
02:08
created
inc/jetpack.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Jetpack Compatibility File.
4
- *
5
- * @link https://jetpack.me/
6
- *
7
- * @package Lighthouse
8
- */
3
+	 * Jetpack Compatibility File.
4
+	 *
5
+	 * @link https://jetpack.me/
6
+	 *
7
+	 * @package Lighthouse
8
+	 */
9 9
 
10 10
 /**
11 11
  * Jetpack setup function.
@@ -33,9 +33,9 @@  discard block
 block discarded – undo
33 33
 	while ( have_posts() ) {
34 34
 		the_post();
35 35
 		if ( is_search() ) :
36
-		    get_template_part( 'template-parts/content', 'search' );
36
+			get_template_part( 'template-parts/content', 'search' );
37 37
 		else :
38
-		    get_template_part( 'template-parts/content', get_post_format() );
38
+			get_template_part( 'template-parts/content', get_post_format() );
39 39
 		endif;
40 40
 	}
41 41
 }
Please login to merge, or discard this patch.
archive.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * The template for displaying archive pages.
4
- *
5
- * @link https://codex.wordpress.org/Template_Hierarchy
6
- *
7
- * @package Lighthouse
8
- */
3
+					 * The template for displaying archive pages.
4
+					 *
5
+					 * @link https://codex.wordpress.org/Template_Hierarchy
6
+					 *
7
+					 * @package Lighthouse
8
+					 */
9 9
 
10 10
 get_header(); ?>
11 11
 
Please login to merge, or discard this patch.
footer.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * The template for displaying the footer.
4
- *
5
- * Contains the closing of the #content div and all content after.
6
- *
7
- * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
8
- *
9
- * @package Lighthouse
10
- */
3
+	 * The template for displaying the footer.
4
+	 *
5
+	 * Contains the closing of the #content div and all content after.
6
+	 *
7
+	 * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
8
+	 *
9
+	 * @package Lighthouse
10
+	 */
11 11
 
12 12
 ?>
13 13
 
Please login to merge, or discard this patch.
inc/custom-header.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,19 +1,19 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Sample implementation of the Custom Header feature.
4
- *
5
- * You can add an optional custom header image to header.php like so ...
6
- *
3
+			 * Sample implementation of the Custom Header feature.
4
+			 *
5
+			 * You can add an optional custom header image to header.php like so ...
6
+			 *
7 7
 	<?php if ( get_header_image() ) : ?>
8 8
 	<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
9 9
 		<img src="<?php header_image(); ?>" width="<?php echo esc_attr( get_custom_header()->width ); ?>" height="<?php echo esc_attr( get_custom_header()->height ); ?>" alt="">
10 10
 	</a>
11 11
 	<?php endif; // End header image check. ?>
12
- *
13
- * @link https://developer.wordpress.org/themes/functionality/custom-headers/
14
- *
15
- * @package Lighthouse
16
- */
12
+			 *
13
+			 * @link https://developer.wordpress.org/themes/functionality/custom-headers/
14
+			 *
15
+			 * @package Lighthouse
16
+			 */
17 17
 
18 18
 /**
19 19
  * Set up the WordPress core custom header feature.
Please login to merge, or discard this patch.
inc/extras.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Custom functions that act independently of the theme templates.
4
- *
5
- * Eventually, some of the functionality here could be replaced by core features.
6
- *
7
- * @package Lighthouse
8
- */
3
+	 * Custom functions that act independently of the theme templates.
4
+	 *
5
+	 * Eventually, some of the functionality here could be replaced by core features.
6
+	 *
7
+	 * @package Lighthouse
8
+	 */
9 9
 
10 10
 /**
11 11
  * Adds custom classes to the array of body classes.
Please login to merge, or discard this patch.
index.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,16 +1,16 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * The main template file.
4
- *
5
- * This is the most generic template file in a WordPress theme
6
- * and one of the two required files for a theme (the other being style.css).
7
- * It is used to display a page when nothing more specific matches a query.
8
- * E.g., it puts together the home page when no home.php file exists.
9
- *
10
- * @link https://codex.wordpress.org/Template_Hierarchy
11
- *
12
- * @package Lighthouse
13
- */
3
+	 * The main template file.
4
+	 *
5
+	 * This is the most generic template file in a WordPress theme
6
+	 * and one of the two required files for a theme (the other being style.css).
7
+	 * It is used to display a page when nothing more specific matches a query.
8
+	 * E.g., it puts together the home page when no home.php file exists.
9
+	 *
10
+	 * @link https://codex.wordpress.org/Template_Hierarchy
11
+	 *
12
+	 * @package Lighthouse
13
+	 */
14 14
 
15 15
 get_header(); ?>
16 16
 
Please login to merge, or discard this patch.
page-template/page-affinity.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Template Name: Affinity
4
- *
5
- * @package Lighthouse
6
- */
3
+		 * Template Name: Affinity
4
+		 *
5
+		 * @package Lighthouse
6
+		 */
7 7
 get_header(); ?>
8 8
 
9 9
 <?php while ( have_posts() ) : the_post(); 
Please login to merge, or discard this patch.
page-template/page-contact.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Template Name: Contact
4
- *
5
- * @package Lighthouse
6
- */
3
+		   * Template Name: Contact
4
+		   *
5
+		   * @package Lighthouse
6
+		   */
7 7
 get_header(); ?>
8 8
 
9 9
 <?php while ( have_posts() ) : the_post(); ?>
Please login to merge, or discard this patch.
page-template/page-divisions.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Template Name: Divisions
4
- *
5
- * @package Lighthouse
6
- */
3
+		   * Template Name: Divisions
4
+		   *
5
+		   * @package Lighthouse
6
+		   */
7 7
 get_header(); ?>
8 8
 
9 9
 <?php while ( have_posts() ) : the_post(); 	
Please login to merge, or discard this patch.