Your IP : 216.73.216.95


Current Path : /var/www/html/soar-backup/wp-content/themes/NativeChurch/
Upload File :
Current File : /var/www/html/soar-backup/wp-content/themes/NativeChurch/single-staff.php

<?php get_header(); 
$pageOptions = imic_page_design(); //page design options
imic_sidebar_position_module(); ?>
<div class="container">
    <div class="row">
        <div class="<?php echo $pageOptions['class']; ?>" id="content-col"> 
            <header class="post-title">
            <?php
            echo'<h2>'. get_the_title() .'</h2>';
            echo'<span class="meta-data">';
            echo'<div class="spacer-10"></div>';
            echo get_the_term_list(get_the_ID(), 'staff-category',__('Categories','framework').': ', ', ', '');
            echo'</span>';
            ?>
            </header>
            <article class="post-content single-staff-page">
            <?php if (has_post_thumbnail()): ?>
            <div class="featured-image">
            <?php
            the_post_thumbnail('full');
            ?>
            </div>
            <?php
            endif;
            while (have_posts()):the_post();
			echo '<div class="page-content">';
            the_content();
			echo '</div>';
            endwhile;
            $job_title = get_post_meta(get_the_ID(), 'imic_staff_job_title', true);
            $job = '';
            if (!empty($job_title)) {
            $job = '<div class="meta-data">' .__('Position','framework').': '. $job_title . '</div>';
            }
            $output = '';
            $output .= $job;
            $output .= imic_social_staff_icon();
            echo $output;
            ?>	
            </article>
        </div>
        <?php if(!empty($pageOptions['sidebar'])){ ?>
        <!-- Start Sidebar -->
        <div class="col-md-3 sidebar" id="sidebar-col">
            <?php dynamic_sidebar($pageOptions['sidebar']); ?>
        </div>
        <!-- End Sidebar -->
        <?php } ?>
    </div>
</div>
<?php get_footer(); ?>