45 lines
1.3 KiB
PHP
45 lines
1.3 KiB
PHP
<?php
|
|
|
|
?>
|
|
<div class="menu-renovateur">
|
|
|
|
<div class="website_logo">
|
|
<?php if (has_custom_logo()) { ?>
|
|
<?php the_custom_logo(); ?>
|
|
<?php } else { ?>
|
|
<a href=" <?php echo get_bloginfo('url'); ?>" class="font-extrabold text-lg uppercase">
|
|
<?php echo get_bloginfo('name'); ?>
|
|
</a>
|
|
|
|
<p class="text-sm font-light text-gray-600">
|
|
<?php echo get_bloginfo('description'); ?>
|
|
</p>
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
</div>
|
|
<?php
|
|
wp_nav_menu(
|
|
array(
|
|
'container' => 'false',
|
|
'theme_location' => 'renovateur',
|
|
'li_class' => 'menu-navlink',
|
|
'fallback_cb' => false,
|
|
'menu_class' => "menu-renovateur__navlist",
|
|
)
|
|
); ?>
|
|
|
|
<button id="search-module-toggle" class="menu-renovateur__search-module-toggle cta cta--circular cta--outline cta--outline-secondary !border border-secondary " title="<?php echo __('Facebook', "homegrade-theme-terminologie") ?>"
|
|
href="<?php echo $social_networks['facebook_profile_url'] ?>">
|
|
<img src="<?php echo get_template_directory_uri() . '/resources/img/graphic-assets/search-icon.svg' ?>" alt="">
|
|
</button>
|
|
<button id="mobile-menu-toggle" class="menu-renovateur__mobile-menu-toggle cta cta--outline cta--button">
|
|
Menu
|
|
</button>
|
|
|
|
|
|
<!-- SEARCH MODULE -->
|
|
<?php get_template_part('template-components/header/search-module'); ?>
|
|
</div>
|