<?php 
    if (category_description()) {
        // Show an optional category description
        ?>
				<div class="archive-meta"><?php 
        echo category_description();
        ?>
</div>
			<?php 
    }
    ?>
			</header><!-- .archive-header -->

		<?php 
    tcp_the_loop();
    /* Start the Loop */
    ?>

		<?php 
} else {
    ?>
			<?php 
    get_template_part('content', 'none');
    ?>
		<?php 
}
?>

		<?php 
if (is_active_sidebar('sidebar-cross')) {
			<?php 
    if (is_active_sidebar('sidebar-layered')) {
        ?>
				<div class="horizontal-layered">
	                  <?php 
        dynamic_sidebar('sidebar-layered');
        ?>
				</div>
			<?php 
    }
    ?>

			<?php 
    /* Start the Loop */
    if (function_exists('tcp_the_loop')) {
        tcp_the_loop('loop-tcp-list');
    } else {
        get_template_part('loop-tcp-list');
    }
    ?>

		<?php 
} else {
    ?>
			<?php 
    get_template_part('content', 'none');
    ?>
		<?php 
}
?>