<?php
/*
Template Name: consultant
*/
?>
<?php get_header();?>

  <!-- page title start here -->
    <section id="special-content-wrapper">
    	<div class="row pagetitle">
            <div class="seven columns">
                <h2><?php the_title();?></h2>                
            </div>
            <div class="five columns">
            	<div id="breadcrumb">
                	<ul>
                        <?php if (function_exists('indonez_breadcrumbs')) indonez_breadcrumbs(); ?>
                    </ul>
                </div>	
            </div>
        </div>
    </section>
    <!-- page title end here -->
	
	 <section id="content-wrapper">
    
    	<div class="row">
        <?php $sidebar_position = of_get_option('sidebar_position');?>
        <?php if ($sidebar_position == "left_sidebar") { ?>
          <div class="eight columns" style="float: right !important;">
        <?php } else { ?>
          <div class="eight columns">
        <?php } ?>
        
          <?php if (have_posts()) : ?>
            <?php while (have_posts()) : the_post();?>
              <?php the_content();?>
			  
			
        <?php
            global $post;
            $args = array( 'numberposts' => 5, 'category' => 7 );
            $myposts = get_posts( $args );
            foreach( $myposts as $post ) :	setup_postdata($post); ?>
	    <!--<div id="leadership_container" style="width:100%">  -->
	       <div id="leader"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></div>
	          <div id="leader_image" style="height:350px;width:220px;float:left;">
	               <?php the_post_thumbnail(); ?></div>
	          <div id="leader_content" style="height:350px;width:400px;float:right;">
	               <?php the_content(); ?></div>

	
<?php endforeach; ?>

			  			  		  
			  
            <?php endwhile; wp_reset_query();?>
          <?php endif;?>
        </div>


 <?php get_sidebar();?>
        
      </div>  

</section>
   <?php get_footer();?>