<?php
echo '<div class="open-positions"><ul>';
if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php offshore_entry_before(); ?>
<?php offshore_entry_top();
echo '<li>
<div class="designation">
<h4 class="subtitle"><a href="'. get_permalink( get_the_ID() ) .'">'. get_the_title( get_the_ID() ) .'</a></h4>';
echo offshore_work_type( get_the_ID(), 'work-type' );
echo '</div>';
echo offshore_career_locations( get_the_ID() );
echo '<a href="'. get_permalink( get_the_ID() ) .'" class="btn btn-primary" role="button">' . esc_html__( 'VIEW AND APPLY', 'offshore' ) . '</a>
</li>';
offshore_entry_bottom();
offshore_entry_after();
endwhile; endif;
echo '</ul></div>';
?>