18 lines
365 B
PHP
Executable File
18 lines
365 B
PHP
Executable File
<?php
|
|
$home_header = get_field('home_header');
|
|
?>
|
|
|
|
|
|
|
|
<h1 class="text-center"><?php echo $home_header['title'] ?></h1>
|
|
|
|
|
|
<section class="home_header header_top">
|
|
<div class="hero_content">
|
|
|
|
<h1 class="text-center "><?php echo $home_header['title'] ?></h1>
|
|
<p class="text-center" ><?php echo $home_header['introduction_text'] ?></p>
|
|
</div>
|
|
</section>
|
|
|