Skip to content

Instantly share code, notes, and snippets.

@danfisher85
Created April 22, 2015 19:30
Show Gist options
  • Save danfisher85/456eb344423173ec63a7 to your computer and use it in GitHub Desktop.
Save danfisher85/456eb344423173ec63a7 to your computer and use it in GitHub Desktop.
<?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