30 lines
1.2 KiB
PHP
30 lines
1.2 KiB
PHP
<header id="masthead" style="background-image: url(<?= get_header_image() ?>)" class="home">
|
|
<div class="video-container">
|
|
<video autoplay muted loop src="<?= get_field('video_header', 'option') ?>"></video>
|
|
</div>
|
|
|
|
<div class="header-cointainer">
|
|
<div class="container mx-auto flex justify-between self-start justify-self-start ">
|
|
<img src="<?= get_field('logo_home', 'option') ?>" alt="<?= get_bloginfo('name') ?>">
|
|
<nav id="site-navigation" aria-label="<?php esc_attr_e('Main Navigation', 'valier'); ?>"
|
|
class="has-small-font-size uppercase has-cinzel-font-family flex items-center gap-6">
|
|
<?php
|
|
wp_nav_menu(
|
|
array(
|
|
'theme_location' => 'menu-primary',
|
|
'container' => false,
|
|
'menu_id' => 'menu-primary',
|
|
'items_wrap' => '<ul id="%1$s" class="%2$s flex justify-center gap-6 text-white " aria-label="submenu">%3$s</ul>',
|
|
)
|
|
);
|
|
?>
|
|
<a href="<?= get_field('linkedin_link', 'option') ?>" target="_blank">
|
|
<img src="<?= get_field('abrevitura_de_linkedin', 'option') ?>" alt="Linkedin" class="linkedin">
|
|
</a>
|
|
</nav>
|
|
|
|
</div>
|
|
<h1 class="self-start justify-self-center has-extreme-font-size has-white-color has-cinzel-font-family uppercase "><?= get_the_title() ?></h1>
|
|
</div>
|
|
</header>
|