Skip to content

Commit

Permalink
Coding standards home.php
Browse files Browse the repository at this point in the history
  • Loading branch information
everaldomatias committed Oct 3, 2017
1 parent 0025f92 commit 7ca6e70
Showing 1 changed file with 18 additions and 16 deletions.
34 changes: 18 additions & 16 deletions home.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,16 @@

<div id="content" class="site-content">
<div class="page-header">
<div class="container">
<h1 class="page-title"><?php single_post_title(); ?></h1>
</div>
<div class="container">
<h1 class="page-title"><?php single_post_title(); ?></h1>
</div>
<?php echo coletivo_breadcrumb(); ?>
</div><!-- container -->

<?php echo coletivo_breadcrumb(); ?>

<div id="content-inside" class="<?php echo esc_attr( $container_class );?>">
<section id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<div id="content-inside" class="<?php echo esc_attr( $container_class );?>">
<section id="primary" class="content-area">
<main id="main" class="site-main" role="main">

<?php if ( have_posts() ) : ?>

Expand All @@ -48,7 +49,6 @@
*/
get_template_part( 'template-parts/content', get_post_format() );
?>

<?php endwhile; ?>

<?php the_posts_navigation(); ?>
Expand All @@ -59,14 +59,16 @@

<?php endif; ?>

</main><!-- #main -->
</section><!-- #primary -->
<?php
if ( 'list' === $blog_style ) {
get_sidebar();
}
?>
</main><!-- #main -->
</section><!-- #primary -->

<?php
if ( 'list' === $blog_style ) {
get_sidebar();
}
?>

</div><!--#content-inside -->
</div><!-- #content -->

<?php get_footer(); ?>
<?php get_footer(); ?>

0 comments on commit 7ca6e70

Please sign in to comment.