12345678910111213141516171819202122 |
- <?php get_header(); ?>
- <div class="container">
- <div id="content" role="main">
- <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <div class="entry-content">
- <div class="date">
- <?php the_date(); ?>
- </div>
- <?php if ( have_posts() ) : ?>
- <header class="page-header">
- <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'dw' ), get_search_query() ); ?></h1>
- </header>
- <?php while ( have_posts() ) : the_post();the_excerpt();
- endwhile; dw_paging_nav();
- else :get_search_form();
- endif;
- ?>
- </div>
- </div>
- </div>
- </div>
- <?php get_footer(); ?>
|