Skip to content

Commit

Permalink
Convert tabs to spaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
kimisgold committed Jun 8, 2014
1 parent b8a8cf5 commit 6c90d1e
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions archive.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@
<aside class="bio">

<h2>
<?php
if ( is_day() ) :
printf( __( 'Daily Archives: %s', 'simplex' ), '<span>' . get_the_date() . '</span> (' . $total_results . ' entries)' );
elseif ( is_month() ) :
printf( __( 'Monthly Archives: %s', 'simplex' ), '<span>' . get_the_date( 'F Y' ) . '</span> (' . $total_results . ' entries)' );
elseif ( is_year() ) :
printf( __( 'Yearly Archives: %s', 'simplex' ), '<span>' . get_the_date( 'Y' ) . '</span> (' . $total_results . ' entries)' );
else :
_e( 'Archives', 'simplex' );
endif;
?>
<?php
if ( is_day() ) :
printf( __( 'Daily Archives: %s', 'simplex' ), '<span>' . get_the_date() . '</span> (' . $total_results . ' entries)' );
elseif ( is_month() ) :
printf( __( 'Monthly Archives: %s', 'simplex' ), '<span>' . get_the_date( 'F Y' ) . '</span> (' . $total_results . ' entries)' );
elseif ( is_year() ) :
printf( __( 'Yearly Archives: %s', 'simplex' ), '<span>' . get_the_date( 'Y' ) . '</span> (' . $total_results . ' entries)' );
else :
_e( 'Archives', 'simplex' );
endif;
?>
</h2>

</aside>
Expand Down

0 comments on commit 6c90d1e

Please sign in to comment.