<?php
// Template name: Terms
get_header();
$template_directory = get_template_directory_uri();
$srcset = 'srcset="' . $template_directory . '/assets/images/lazyload.png"';
?>
<div class="container">
<div class="job-main-description">
<div class="job-main-description__left --border-wrapper">
<span class="--horizontal-border --border-bottom"></span>
<div class="breadcurmbs__wrapper text-2 mob-text-2 pc-breadcrumbs">
<a href="<?php echo get_home_url(); ?>" class="home-link"></a>
<p class="--light"><?php the_title(); ?></p>
</div>
<div class="mob-breadcrumbs breadcurmbs__wrapper text-2 mob-text-2">
<a href="<?php echo get_home_url(); ?>">
<?php
$id_frontpage = get_option('page_on_front');
$home_title = get_the_title( $id_frontpage );
echo $home_title;
?>
</a>
</div>
</div>
</div>
</div>
<section class="article-section -terms-conditions" data-animate-group="list" data-offset="0">
<div class="container">
<div class="article__wrapper">
<div class="article__left">
<h2 class="title title-1 mob-title-1 --red-dot" data-animate="word" data-index="1">
<?php the_field('title'); ?>
</h2>
</div>
<div class="article__right editor -numbered-title" data-animate="swim-top" data-index="2">
<?php the_field('content'); ?>
</div>
</div>
</div>
</section>
<?php
get_footer();
?>