|
@@ -0,0 +1,25 @@
|
|
|
|
+<?php get_header();?>
|
|
|
|
+
|
|
|
|
+ <div class="container">
|
|
|
|
+ <div class="row">
|
|
|
|
+ <div class="col col-lg-9 col-sm-12">
|
|
|
|
+ <?php if ( have_posts() ) : ?>
|
|
|
|
+ <header class="page-header">
|
|
|
|
+ <h1></strong><?php printf( __( 'Search for: %s' ), get_search_query() ); ?></h1>
|
|
|
|
+ </header>
|
|
|
|
+ <?php while ( have_posts() ) : the_post();?>
|
|
|
|
+ <header class="entry-header">
|
|
|
|
+ <h2 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></h2>
|
|
|
|
+ </header>
|
|
|
|
+ <div class="entry-content">
|
|
|
|
+ <?php the_excerpt(); ?>
|
|
|
|
+ </div>
|
|
|
|
+ <?php endwhile; else : printf( __( 'Nothing Found' ));get_search_form(); endif;?>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col col-lg-3 col-sm-12 bg-primary">
|
|
|
|
+ <?php get_sidebar();?>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+<?php get_footer();?>
|