<html>
<?php
/**
 * The template for displaying team pages
 *
 * @package luxia
 */

get_header(); 
?>

<?php get_template_part('template-parts/breadcrumbs/page-single-breadcrumbs'); ?>
  <!-- Project Detail -->
    <section class="team-area-content" >
        <div class="container">
           
            <!-- Lower Content -->
            <div class="lower-content">
                <div class="row align-items-center">
                     <div class="col-lg-6 col-md-12 col-sm-12 text-center">
                         <div class="team-img-box">
                             <?php the_post_thumbnail(); ?>
                         </div>
                       
                    </div>
                    
                    <div class="text-column col-lg-6 col-md-12 col-sm-12">
                       <div class="s-about-content pl-30 wow fadeInRight" data-animation="fadeInRight" data-delay=".2s">  
                        
                        <span> 
							<?php
                             $teampostions = rwmb_meta( 'luxiazc_post_team_postions' );
                             echo html_entity_decode ($teampostions);	
                             ?>
						</span>   
                           <h2><?php the_title();?></h2>
                           
                           <?php echo the_content();?>
                           <div class="social">
                          <?php
                             $postsl = rwmb_meta( 'luxiazc_post_social' );
                             echo html_entity_decode ($postsl);	
                             ?>
                               </div>

                            </div>
                    </div>
                   
                </div>
            </div>

        </div>
    </section>
    <!--End Project Detail -->

<?php get_footer() ?>
             