<?php
get_header();
?>
<main>
<?php get_template_part('templates/blocks/breadcrumbs'); ?>
<?php
$main = get_field('main');
?>
<section class="article">
<div class="container">
<div class="job-header">
<h1 data-animate="swim-top"><?php the_title(); ?></h1>
<div class="job-header__tags">
<?php
$location = get_field('location');
$work_type = get_field('work_type');
$employment_type = get_field('employment_type');
if ($location) {
echo '<div class="jobs-item__tag title-6 --supply">' . esc_html($location) . '</div>';
}
if ($work_type) {
echo '<div class="jobs-item__tag title-6 --supply">' . esc_html($work_type) . '</div>';
}
if ($employment_type) {
echo '<div class="jobs-item__tag title-6 --supply">' . esc_html($employment_type) . '</div>';
}
?>
</div>
</div>
<div class="article__content editor">
<?php the_content(); ?>
</div>
</div>
</section>
<?php
get_template_part('templates/blocks/career-form');
?>
</main>
<?php
get_footer();
?>