File: /home/mmickelson/martyknows.com/wp-content/themes/retro-fitted/search.php
<?php
/**
* Search Template
*
* The search template is loaded when a visitor uses the search form to search for something
* on the site.
*
* @package Retro-fitted
* @subpackage Template
*/
get_header(); // Loads the header.php template. ?>
<?php do_atomic( 'before_content' ); // retro-fitted_before_content ?>
<div id="content">
<?php get_sidebar( 'before-content' ); // Loads the sidebar-before-content.php template. ?>
<?php do_atomic( 'open_content' ); // retro-fitted_open_content ?>
<div class="hfeed">
<?php get_template_part( 'loop-meta' ); // Loads the loop-meta.php template. ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php do_atomic( 'before_entry' ); // retro-fitted_before_entry ?>
<div id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
<?php do_atomic( 'open_entry' ); // retro-fitted_open_entry ?>
<?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . sprintf( __( '[entry-published] — <code>%s</code>', 'retro-fitted' ), get_permalink() ) . '</div>' ); ?>
<?php do_atomic( 'close_entry' ); // retro-fitted_close_entry ?>
</div><!-- .hentry -->
<?php do_atomic( 'after_entry' ); // retro-fitted_after_entry ?>
<?php endwhile; ?>
<?php else : ?>
<?php get_template_part( 'loop-error' ); // Loads the loop-error.php template. ?>
<?php endif; ?>
</div><!-- .hfeed -->
<?php do_atomic( 'close_content' ); // retro-fitted_close_content ?>
<?php get_sidebar( 'after-content' ); // Loads the sidebar-after-content.php template. ?>
<?php get_template_part( 'loop-nav' ); // Loads the loop-nav.php template. ?>
</div><!-- #content -->
<?php do_atomic( 'after_content' ); // retro-fitted_after_content ?>
<?php get_footer(); // Loads the footer.php template. ?>