<?php get_header(); ?>
<div id="propress-bridge-container">
			<?php if ( have_posts() ) : ?>
	<div id="content">
		<div class="rules">
			<div class="inner"><span class="corners-top"><span></span></span>
		<?php /* If this is a category archive */ if (is_category()) { ?>
		<?php printf( __( 'You are currently browsing the archives for the %s category.', 'propress' ), '<span>' . single_cat_title( '', false ) . '</span>' );  ?>
		<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
        <?php printf( __( 'You are currently browsing the blog archives for the day %s', 'propress' ), '<span>' . get_the_date() . '</span>' ); ?>
        <?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
        <?php printf( __( 'You are currently browsing the blog archives for the month %s', 'propress' ), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format', 'propress' ) ) . '</span>' );?>
        <?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
       <?php printf( __( 'You are currently browsing the blog archives for the year %s', 'propress' ), '<span>' . get_the_date( _x( 'Y', 'yearly archives date format', 'propress' ) ) . '</span>' );
        /* If this is an author archive */ } elseif (is_author()) {
        						/* Queue the first post, that way we know
								 * what author we're dealing with (if that is the case).
								*/
								the_post();
 printf( __( 'You are currently browsing the blog archives for posts by %s', 'propress' ), '<span>' . get_the_author() . '</span>' );
								/* Since we called the_post() above, we need to
								 * rewind the loop back to the beginning that way
								 * we can run the loop properly, in full.
								 */
								rewind_posts(); ?>
        <?php /* If this is a paged archive */ } elseif ( is_tag() ) { 
         printf( __( 'You are currently browsing the archives for posts tagged with %s', 'propress' ), '<span>' . single_tag_title( '', false ) . '</span>' );
 } ?>
			<span class="corners-bottom"><span></span></span></div>
		</div><!-- .rules //-->
		<br />
		
		<?php
			/* Start the Loop */
			while ( have_posts() ) : the_post();?>
		<?php get_template_part( 'contente'); ?>
		<hr class="divider" />
    <?php endwhile; ?>
		<?php get_template_part('breads'); ?>    
        <?php else : ?>
		<?php get_template_part('notfound'); ?>
        <?php endif; ?>
	</div><!-- #content //-->
	        <?php get_sidebar(); ?>
</div><!-- #propress-bridge-container //-->
<?php get_footer(); ?>