Staff Bios

<?php
/**
 * A [template](http://codex.wordpress.org/Plugin_API/Filter_Reference/template) used for displaying page content in front-page.php
 *
 * @package ct
 */
?>

<!-- About -->
<article id="about" <?php [post_class](http://codex.wordpress.org/Function_Reference/post_class)(); ?>>
        <header class="entry-header">
                <h1 class="entry-title">About</h1>
        </header><!-- .entry-header -->

        <div class="entry-content">
                <a class="owl-prev" href="#"><i class="fa fa-2x fa-chevron-left"></i></a>
                <div id="staff">
                        <?php
                                $staff = new [WP_Query](http://codex.wordpress.org/Class_Reference/WP_Query)('post_type=staff');
                                if($staff->[have_posts](http://codex.wordpress.org/Function_Reference/have_posts)()) {
                                        while($staff->[have_posts](http://codex.wordpress.org/Function_Reference/have_posts)()) {
                                                $staff->[the_post](http://codex.wordpress.org/Plugin_API/Action_Reference/the_post)();
                                                $featuredimg = [get_the_post_thumbnail](http://codex.wordpress.org/Function_Reference/get_the_post_thumbnail)($post->ID, 'staff');
                                                $title = [get_post_meta](http://codex.wordpress.org/Function_Reference/get_post_meta)($post->ID, 'staff_title', true);
                        ?>
                        <div class="row">
                                <div class="large-9 large-centered columns">
                                        <div class="row">
                                                <div class="large-12 columns">
                                                        <h1><?php [the_title](http://codex.wordpress.org/Plugin_API/Filter_Reference/the_title)(); ?></h1>
                                                        <h4><?php echo $title; ?></h4>
                                                        <div class="right"><?php echo $featuredimg; ?></div>
                                                        <?php [the_content](http://codex.wordpress.org/Plugin_API/Filter_Reference/the_content)(); ?>
                                                </div>
                                        </div>
                                </div>
                        </div>
                        <?php
                                        }
                                }
                                [wp_reset_postdata](http://codex.wordpress.org/Function_Reference/wp_reset_postdata)();
                        ?>
                </div>
                <a class="owl-next" href="#"><i class="fa fa-2x fa-chevron-right"></i></a>
        </div><!-- .entry-content -->
</article><!-- #post-## -->