
<?php /* Template Name: All Properties page */ ?>

<?php get_header(); ?>

<div class="wrap">
    <div id="primary" class="content-area">
        <main id="main" class="site-main" role="main">
            <div id="home" class="fullCommon commonBanner">
                <div class="insideCon">
                    <h1><?php the_title(); ?></h1>
                    <div class="breadcrumb"><?php echo get_breadcrumb(); ?></div>
                </div>
            </div>
            
            
            
            <div class="fullCommon middleContent">
             
            <div id="allProperties" class="fullCommon pad_tp_100 pad_bt_100">
                <div class="container">
                  <div class="row">
                     <?php
                    $args = array (
                        'post_type' => 'properties',
                        'posts_per_page' => 5,
                       // 'category_name' => 'education', 
                        'order' => 'ASC',
                        
                    );
                    $query = new WP_Query( $args );
                    ?>

                    <ul class="slider01 propertyBox">
                        <?php while($query->have_posts()) : $query->the_post(); ?>
                        <li class="col-xs-12 col-sm-6 col-md-4 col-lg-4">
                            <div class="fullbox">
                                <div class="img_con">
                                 <?php the_post_thumbnail(); ?>
                                </div>
                                <div class="content">
                                    <h3><?php the_title(); ?></h3>     
                                    <span class="smallCon"><?php the_excerpt(); ?></span>
                                    <div class="proBtn creative_title kc-elm kc-css-748798 kc-pro-button kc-button-3">
                                     <a href="<?php echo get_permalink(); ?>">Read More</a>
                                    </div>
                                   
                                </div>
                            </div>
                        
                        </li>
                        <?php endwhile; ?> 
                        </ul>
                    <?php wp_reset_postdata(); ?>                                          
                </div>             
               </div>
               
             
             
           </div>    

            
       </main><!-- #site-content -->
                         
        </main><!-- #main -->
    </div><!-- #primary -->
</div><!-- .wrap -->

<?php get_footer(); ?>

