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.

44 lines
705 B

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. <?php
  2. /**
  3. * The tag template file.
  4. *
  5. * Displays a tag archive
  6. *
  7. * @package Portage
  8. */
  9. get_header();
  10. ?>
  11. <div id="content">
  12. <div id="archive-title">
  13. <h2>
  14. <?php
  15. printf( __( 'Posts tagged with: <span>%s</span>', 'atticus-finch' ), single_cat_title( '', false ) );
  16. ?>
  17. </h2>
  18. <?php
  19. $description = tag_description();
  20. ?>
  21. </div>
  22. <!-- Start the loop -->
  23. <?php if ( have_posts() ) : ?>
  24. <?php while ( have_posts() ) : the_post(); ?>
  25. <?php get_template_part( 'formats/excerpt', get_post_format() ); ?>
  26. <!-- End the loop -->
  27. <?php endwhile; ?>
  28. <?php endif; ?>
  29. <?php portage_display_nav(); ?>
  30. </div> <!-- end Content -->
  31. <?php get_sidebar(); ?>
  32. <div class="clear"></div>
  33. <?php get_footer(); ?>