• File: single.php
  • Full Path: /home/dealkatnwc/www/alternativeline/wp-content/themes/real-estate-salient/single.php
  • Date Modified: 05/02/2024 1:09 PM
  • File size: 770 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
/**
 * The template for displaying all single posts.
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
 *
 * @package real-estate-salient
 */

get_header(); ?>
<?php do_action( 'real_estate_salient_content_head' ); ?>
<div class="container-fluid">
	<div class="content-area container">
		<div class="single-index clearfix" id="content">
			<div class="row">
				<?php 
					if(have_posts()):
						while(have_posts()): the_post(); 
								get_template_part( 'template-parts/content', 'single' );
						endwhile;
					endif; 
				?>		
				<?php get_sidebar(); ?>	
			</div><!-- .row -->
		</div><!-- .single-index clearfix -->	
	</div><!-- .content-area container -->
</div>
<?php get_footer(); ?>