Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
65eb192b8b
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
23 lines (22 sloc) 563 Bytes
<?php
/**
* Used for displaying the 'person' post type.
*/
get_header(); ?>
<?php
$postID = get_the_ID();
?>
<div id="page-page">
<?php if (have_posts()) : while ( have_posts() ) : the_post(); ?>
<div class="row">
<div class="col-sm-12">
<div id="primary" class="content-area subpage">
<main id="main" class="site-main" role="main">
<?php get_template_part( 'content-person', get_post_format() ); ?>
</main>
</div>
</div>
</div>
<?php endwhile; endif; // end of the loop. ?>
</div>
<?php get_footer(); ?>