Created
April 22, 2015 19:30
-
-
Save danfisher85/456eb344423173ec63a7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Resume Category | |
* | |
* @package PetSitter | |
* @since PetSitter 1.4.7 | |
*/ | |
get_header(); ?> | |
<div class="page-content"> | |
<div class="container"> | |
<?php if ( have_posts() ) : ?> | |
<div class="resumes"> | |
<ul class="resumes"> | |
<?php while ( have_posts() ) : the_post(); ?> | |
<?php get_job_manager_template_part( 'content', 'resume', 'wp-job-manager-resumes' ); ?> | |
<?php endwhile; ?> | |
</ul> | |
</div> | |
<?php else : ?> | |
<?php get_template_part( 'content', 'none' ); ?> | |
<?php endif; ?> | |
</div> | |
</div> | |
<?php get_footer(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment