homegrade_theme_production/template-blocks/home/home-header/home-header.php

20 lines
719 B
PHP
Executable File

<?php
$home_header = get_field('home_header_datas');
?>
<section class="home-header header_top">
<div class="home-header__titling">
<h1 class="home-header__title">
<?php echo $home_header['title'] ?>
</h1>
<p><?php echo $home_header['description'] ?></p>
<a class="home-header__scroll-down-indicator" href="#section-show-thematiques">
<img class="home-header__scroll-down-indicator__arrow" src='<?php echo get_template_directory_uri() ?>/resources/img/graphic-assets/arrow-down-white.svg' alt=''>
</a>
</div>
<div class="home-header__fresque">
<img src="<?php echo get_template_directory_uri() . '/resources/img/illustrations/illustration-accueil-thematiques.jpg' ?>" alt="">
</div>
</section>