<?php
get_header();
$template_directory = get_template_directory_uri();
$srcset = 'srcset="' . $template_directory . '/assets/images/lazyload.png"';
$fzf = get_field('404', 'option');
?>
<main>
<section class="fzf">
<div class="container-big">
<div class="fzf__wrapper">
<div class="fzf-content">
<h1 class="title title-1">
<?php echo $fzf['title']; ?>
</h1>
<?php if (!empty($fzf['button'])) : ?>
<?php echo get_button_group_field($fzf['button']); ?>
<?php endif; ?>
</div>
<div class="fzf-image">
<img src="<?php echo esc_url($fzf['image']['url']); ?>"
alt="<?php echo esc_attr($fzf['image']['alt']); ?>">
</div>
</div>
</div>
</section>
</main>
<?php
get_footer();
?>