Passed
Push — purged ( 1a7250...44fe4e )
by Jacques
04:42
created
1
<?php
2
/**
3
 * The template for displaying all pages.
4
 *
5
 * @package lsx
6
 */
7
8
get_header(); ?>
9
10
<?php lsx_content_wrap_before(); ?>
11
12
<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>">
13
14
	<?php lsx_content_before(); ?>
15
16
	<main id="main" class="site-main" role="main">
17
18
		<?php lsx_content_top(); ?>
19
20
		<?php if ( have_posts() ) : ?>
0 ignored issues
show
Expected 0 spaces after opening bracket; 1 found
Loading history...
Expected 0 spaces before closing bracket; 1 found
Loading history...
Blank line found at start of control structure
Loading history...
21
22
			<?php
23
			while ( have_posts() ) :
0 ignored issues
show
Expected 0 spaces after opening bracket; 1 found
Loading history...
Expected 0 spaces before closing bracket; 1 found
Loading history...
24
				the_post();
25
			?>
26
27
				<?php get_template_part( 'partials/content', 'page' ); ?>
28
29
			<?php endwhile; ?>
30
31
		<?php endif; ?>
32
33
		<?php lsx_content_bottom(); ?>
34
35
	</main><!-- #main -->
36
37
	<?php lsx_content_after(); ?>
38
39
	<?php
40
	if ( comments_open() ) {
0 ignored issues
show
Expected 0 spaces after opening bracket; 1 found
Loading history...
Expected 0 spaces before closing bracket; 1 found
Loading history...
41
		comments_template();
42
	}
43
	?>
44
45
</div><!-- #primary -->
46
47
<?php lsx_content_wrap_after(); ?>
48
49
<?php get_sidebar(); ?>
50
51
<?php
52
get_footer();
53