Created
February 8, 2017 20:00
-
-
Save rali14/3d54b8d7f69e71d22bd85c8f3819ed87 to your computer and use it in GitHub Desktop.
Content-Joblisting
This file contains hidden or 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 | |
/** | |
* The template for displaying job listings (in a loop). | |
* | |
* @package Listify | |
*/ | |
?> | |
<li itemscope itemtype="http://schema.org/LocalBusiness" id="job_listing-<?php the_ID(); ?>" <?php echo apply_filters( 'listify_job_listing_data', '', false ); ?>> | |
<div class="content-box"> | |
<?php do_action( 'listify_content_job_listing_before' ); ?> | |
<a href="<?php the_permalink(); ?>" class="job_listing-clickbox" <?php if ( listify_theme_mod( 'listing-archive-window', false ) && ! is_front_page() ) : ?>target="_blank"<?php endif; ?>></a> | |
<header <?php echo apply_filters( 'listify_cover', 'job_listing-entry-header listing-cover' ); ?>> | |
<?php do_action( 'listify_content_job_listing_header_before' ); ?> | |
<div class="job_listing-entry-header-wrapper cover-wrapper"> | |
<?php do_action( 'listify_content_job_listing_header_start' ); ?> | |
<!-- | |
<div class="job_listing-entry-thumbnail"> | |
<div <?php echo apply_filters( 'listify_cover', 'list-cover' ); ?>></div> | |
</div> | |
--> | |
<div class="job_listing-entry-meta"> | |
<?php do_action( 'listify_content_job_listing_meta' ); ?> | |
</div> | |
<?php do_action( 'listify_content_job_listing_header_end' ); ?> | |
</div> | |
<?php do_action( 'listify_content_job_listing_header_after' ); ?> | |
</header><!-- .entry-header --> | |
<footer class="job_listing-entry-footer"> | |
<?php do_action( 'listify_content_job_listing_footer' ); ?> | |
</footer><!-- .entry-footer --> | |
<?php do_action( 'listify_content_job_listing_after' ); ?> | |
</div> | |
</li><!-- #post-## --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment