Skip to content

Commit

Permalink
Fix Coding standards in archive.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Everaldo Matias committed Sep 12, 2017
1 parent b7da86b commit 71aaabc
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions archive.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@
<div class="container">
<?php the_archive_title( '<h1 class="page-title">', '</h1>' ); ?>
<?php the_archive_description( '<div class="taxonomy-description">', '</div>' ); ?>
</div>
</div>
</div><!-- container -->
</div><!-- page-header -->

<?php echo coletivo_breadcrumb(); ?>
<?php if ( function_exists( 'coletivo_breadcrumb' ) ) : ?>
<?php echo coletivo_breadcrumb(); ?>
<?php endif; ?>

<div id="content-inside" class="container">
<main id="main" class="site-main" role="main">
<main id="main" class="site-main" role="main">

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

<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>

<?php

/*
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
Expand All @@ -48,8 +48,8 @@

<?php endif; ?>

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

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

0 comments on commit 71aaabc

Please sign in to comment.