<div class="job_listing-entry-header-wrapper cover-wrapper">

                <div class="job_listing-entry-thumbnail">
                    <div <?php 
echo apply_filters('listify_cover', 'list-cover');
?>
></div>
                </div>
                <div class="job_listing-entry-meta">
                    <h1 itemprop="name" class="job_listing-title">
                        <?php 
echo get_the_title();
?>
                    </h1>
                    <div class="job_listing-location"><?php 
echo get_the_job_venue();
?>
</div>
                </div>

            </div>

            <?php 
do_action('listify_content_job_listing_header_after');
?>
        </header><!-- .entry-header -->

        <footer class="job_listing-entry-footer">

            <?php 
echo date('Ymd') == date('Ymd', strtotime(get_the_job_date($event_post))) ? 'Today | ' : '';
 /**
  * Contact Title modification
  * 
  * @global type $post
  */
 public function contact_title()
 {
     global $post;
     echo '<h2 class="widget-title widget-title-job_listing ion-location">Where</h2><h5>' . get_the_job_venue() . '</h5>';
 }