<?php
get_header();
$template_directory = get_template_directory_uri();
$srcset = 'srcset="' . $template_directory . '/assets/images/lazyload.png"';
$page_404 = get_field('page_404', 'option');
?>
<main>
<?php
if ($page_404['title']) :
?>
<section class="error --rounded-section">
<div class="container">
<div class="error__inner">
<?php
if ($page_404['img']) :
?>
<img class="error__image" src='<?php echo $page_404['img']['url']; ?>' alt="<?php echo $page_404['img']['alt']; ?>" />
<?php
endif;
?>
<h1 class="title-2 error__title mobile__title-2"><?php echo $page_404['title']; ?></h1>
<?php
if ($page_404['text']) :
?>
<p class="text-2 error__text mobile__text-2 ">
<?php echo $page_404['text']; ?>
</p>
<?php
endif;
if ($page_404['go_to_homepage']) :
?>
<a href="<?php echo get_home_url(); ?>" class='button__transparent error__button'>
<?php echo $page_404['go_to_homepage']; ?>
</a>
<?php
endif;
?>
</div>
</div>
</section>
<?php
endif;
?>
</main>
<?php
get_footer();
?>