category.php 955 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">Category: <?php single_cat_title(); ?></h1>
  8. </header>
  9. <?php while ( have_posts() ) : the_post();?>
  10. <h1 class="entry-title"><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></h1>
  11. <div class="entry-meta">
  12. <div class="date">
  13. <?php the_date(); ?>
  14. </div>
  15. </div>
  16. <?php the_excerpt(); ?>
  17. <?php endwhile; ?>
  18. <div class="clear">&nbsp;</div>
  19. <hr>
  20. <?php dw_paging_nav();
  21. else :
  22. printf( __( 'Nothing Found', 'dw' ));
  23. get_search_form();
  24. endif;
  25. ?>
  26. </div>
  27. </article>
  28. </div>
  29. <?php get_footer('studio'); ?>