?>
									<?php 
                the_candidate_title('', '', true, $resume);
                ?>
								<?php 
            } elseif ('candidate-location' === $key) {
                ?>
									<?php 
                the_candidate_location(false, $resume);
                ?>
</td>
								<?php 
            } elseif ('resume-category' === $key) {
                ?>
									<?php 
                the_resume_category($resume);
                ?>
								<?php 
            } elseif ('status' === $key) {
                ?>
									<?php 
                the_resume_status($resume);
                ?>
								<?php 
            } elseif ('date' === $key) {
                ?>
									<?php 
                if (!empty($resume->_resume_expires) && strtotime($resume->_resume_expires) > current_time('timestamp')) {
                    printf(__('Expires %s', 'wp-job-manager-resumes'), date_i18n(get_option('date_format'), strtotime($resume->_resume_expires)));
                } else {
                    echo date_i18n(get_option('date_format'), strtotime($resume->post_date));
        ?>
			</dl>
		<?php 
    }
    ?>

		<ul class="meta">
			<?php 
    do_action('single_resume_meta_start');
    ?>

			<?php 
    if (get_the_resume_category()) {
        ?>
				<li class="resume-category"><?php 
        the_resume_category();
        ?>
</li>
			<?php 
    }
    ?>

			<li class="date-posted" itemprop="datePosted"><date><?php 
    printf(__('Updated %s ago', 'wp-job-manager-resumes'), human_time_diff(get_the_modified_time('U'), current_time('timestamp')));
    ?>
</date></li>

			<?php 
    do_action('single_resume_meta_end');
    ?>
		</ul>