[HOME]

Path : /home/easyrentals/public_html/old/xx/themes/easyrental/
Upload :
Current File : /home/easyrentals/public_html/old/xx/themes/easyrental/quick-search.php

<?php
/* Template Name: Quick Search Template*/ 

get_header('quicksearch'); ?>



         <section class="content-one p-t-40">
            <div class="container">
            	<?php 
            		while ( have_posts() ) : the_post();
            		$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full' );
            	?>
                <div class="row m-b-40">
                    <div class="col-lg-8 col-md-8 col-sm-8 col-xs-12">
                        <h2 class="m-t-0"><?php the_title();?></h2>
                        <div class="content-left">
						<!--<img src="//<?php //echo $image[0]; ?>" alt="" class="img-responsive">-->
                            <?php the_content();?>
                        </div>
                    </div>
					<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12">
					<?php get_sidebar();?>
					</div>
                </div>

              
                <?php endwhile;?>
            </div>
        </section>

<?php
get_footer();