Skip to content

Instantly share code, notes, and snippets.

@mbeall
Created January 1, 2014 21:22
Show Gist options
  • Save mbeall/8211641 to your computer and use it in GitHub Desktop.
Save mbeall/8211641 to your computer and use it in GitHub Desktop.
<?php
/**
* Displays a single profile
*
* @package Steel
* @module Teams
*
*/
get_header(); ?>
<div id="primary" class="content-area container">
<div id="content" class="site-content" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part('type', 'steel_profile'); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || '0' != get_comments_number() )
comments_template(); ?>
<?php endwhile; // end of the loop. ?>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment