<?php
get_header();
$template_directory = get_template_directory_uri();
$srcset = 'srcset="' . $template_directory . '/assets/images/lazyload.png"';
$page = get_field('404', 'option');
?>
<section class="section-404">
<div class="container">
<div class="wrapper-404">
<div class="wrapper__left-404">
<?php
if ($page['tag_text']) :
?>
<div class="bubble-tag text-3 mob-text-3">
<?php echo $page['tag_text']; ?>
</div>
<?php
endif;
if ($page['title']) :
?>
<h1 class="title-1 mob-title-1 title --red-dot">
<?php echo $page['title']; ?>
</h1>
<?php
endif;
if ($page['subtitle']) :
?>
<p class="text text-2 mob-text-2 --light">
<?php echo $page['subtitle']; ?>
</p>
<?php
endif;
if ($page['button_text']) :
?>
<a href="<?php echo get_home_url(); ?>" class="default-button -black"><?php echo $page['button_text']; ?></a>
<?php
endif;
?>
</div>
<div class="wrapper__right-404">
<?php
if ($page['img']) :
?>
<img src="<?php echo $page['img']['url']; ?>" alt="<?php echo $page['img']['alt']; ?>">
<?php
endif;
?>
</div>
</div>
</div>
</section>
<?php
get_footer();
?>