tag.php 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. <?php get_header(); ?>
  2. <div class="container leader">
  3. <div class="row">
  4. <div class="col-md-12">
  5. <h1 class="cm-sans fs-2 archive-heading animate__animated animate__fadeInLeft">Tag: <?php single_cat_title(); ?></h1>
  6. </div>
  7. </div>
  8. <article id="content" class="single" role="main">
  9. <div class="entry-content archive">
  10. <?php if ( have_posts() ) : ?>
  11. <?php while ( have_posts() ) : the_post(); ?>
  12. <div class="col-sm-6">
  13. <div class="entry-meta">
  14. <div class="date">
  15. <?php the_date(); ?>
  16. </div>
  17. </div>
  18. <h4><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'dw' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h4>
  19. <?php the_excerpt(); ?>
  20. </div>
  21. <?php endwhile; ?>
  22. <div class="clear">&nbsp;</div>
  23. <?php dw_paging_nav();
  24. else :
  25. printf( __( 'Nothing Found', 'dw' ));
  26. get_search_form();
  27. endif;
  28. ?>
  29. </div>
  30. </article>
  31. </div>
  32. <?php get_footer('full'); ?>