search.php 990 B

123456789101112131415161718192021222324252627282930
  1. <?php get_header(); ?>
  2. <div class="container">
  3. <div id="content" role="main">
  4. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  5. <div class="entry-content">
  6. <?php if ( have_posts() ) : ?>
  7. <header class="page-header">
  8. <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'dw' ), get_search_query() ); ?></h1>
  9. </header>
  10. <?php while ( have_posts() ) : the_post();?>
  11. <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>
  12. <div class="entry-meta">
  13. <div class="date">
  14. <?php the_date(); ?>
  15. </div>
  16. </div>
  17. <?php the_excerpt(); ?>
  18. <?php endwhile;
  19. dw_paging_nav();
  20. else :
  21. printf( __( 'Nothing Found', 'dw' ));
  22. get_search_form();
  23. endif;
  24. ?>
  25. </div>
  26. </div>
  27. </div>
  28. </div>
  29. <?php get_footer(); ?>