An updated theme (based on Atticus Finch) for ClassicPress
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
799 B

3 years ago
3 years ago
3 years ago
  1. <?php
  2. /**
  3. * The category template file.
  4. *
  5. * Displays category archives.
  6. * Learn more: http://codex.wordpress.org/Template_Hierarchy
  7. *
  8. * @package Portage
  9. */
  10. get_header();
  11. ?>
  12. <div id="content">
  13. <div id="archive-title">
  14. <h2>
  15. <?php
  16. printf( __( 'Posts contained in the &ldquo;<span>%s</span>&rdquo; category:', 'portage' ), single_cat_title( '', false ) );
  17. ?>
  18. </h2>
  19. <?php
  20. echo category_description();
  21. ?>
  22. </div>
  23. <!-- Start the loop -->
  24. <?php if ( have_posts() ) : ?>
  25. <?php while ( have_posts() ) : the_post(); ?>
  26. <?php get_template_part( 'formats/excerpt', get_post_format() ); ?>
  27. <!-- End the loop -->
  28. <?php endwhile; ?>
  29. <?php endif; ?>
  30. <?php atticus_finch_display_nav(); ?>
  31. </div> <!-- end Content -->
  32. <?php get_sidebar(); ?>
  33. <div class="clear"></div>
  34. <?php get_footer(); ?>