carhop__dynamiques-theme__P.../template-parts/blocks/home/home_hero/home_hero.php
2022-09-27 08:52:44 +00:00

19 lines
688 B
PHP
Executable File

<?php
$home_video_hero = get_field('home_video_hero');
?>
<section class="video_hero header_top">
<video class="test" autoplay muted loop playsinline ?>">
<source src="<?php echo get_template_directory_uri() . '/resources/video/Semlex_Homecover_hero.mp4' ?>" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="hero_content">
<h1 class="text-center text-white"><?php echo $home_video_hero['main_title'] ?></h1>
<p class="text-center text-white" ><?php echo $home_video_hero['text'] ?></p>
<a class="text-center mx-auto w-fit text-white" href=""><?php echo $home_video_hero['button']['title'] ?></a>
</div>
</section>