category.php 1010 B

123456789101112131415161718192021222324252627282930
  1. <?php get_header(); ?>
  2. <div class="container">
  3. <article id="content" class="single" role="main">
  4. <div class="entry-content archive wow fadeIn">
  5. <?php if ( have_posts() ) : ?>
  6. <header class="page-header">
  7. <h1 class="super cm-sans">Topic: <?php single_cat_title(); ?></h1>
  8. </header>
  9. <?php while ( have_posts() ) : the_post();?>
  10. <div class="col-sm-6 offset-lg-1">
  11. <div class="entry-meta">
  12. <div class="date">
  13. <?php the_date(); ?>
  14. </div>
  15. </div>
  16. <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>
  17. </div>
  18. <?php endwhile; ?>
  19. <div class="clear">&nbsp;</div>
  20. <hr>
  21. <?php dw_paging_nav();
  22. else :
  23. printf( __( 'Nothing Found', 'dw' ));
  24. get_search_form();
  25. endif;
  26. ?>
  27. </div>
  28. </article>
  29. </div>
  30. <?php get_footer('home'); ?>