21 lines
978 B
PHP
Executable File
21 lines
978 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="<?php echo __("Conseils par thématique", "homegrade-theme__texte-fonctionnel") ?>">
|
|
</a>
|
|
</div>
|
|
<div class="home-header__fresque">
|
|
<img class="desktop_pic" src="<?php echo get_template_directory_uri() . '/resources/img/illustrations/homegrade_accueil-thematiques.svg' ?>" alt="">
|
|
<img class="mobile_pic" src="<?php echo get_template_directory_uri() . '/resources/img/illustrations/homegrade_accueil-thematiques-responsive.svg' ?>" alt="">
|
|
</div>
|
|
</section>
|