File: /home/storage/162/3480162/user/htdocs/wp-content/themes/gutenbiz/templates/header/header-main.php
<?php
/**
* Content for header
*
* @since 1.0.0
*
* @package Gutenbiz WordPress Theme
*/ ?>
<div class="<?php echo Gutenbiz_Helper::with_prefix( 'bottom-header-wrapper' ); ?>">
<div class="container">
<section class="<?php echo Gutenbiz_Helper::with_prefix( 'bottom-header' ); ?>">
<div class="<?php echo Gutenbiz_Helper::with_prefix( 'header-search' ); ?>">
<button class="circular-focus screen-reader-text" data-goto=".gutenbiz-header-search .gutenbiz-toggle-search"><?php esc_html_e( 'Circular focus', 'gutenbiz' ); ?></button>
<?php get_search_form(); ?>
<button type="button" class="close <?php echo Gutenbiz_Helper::with_prefix( 'toggle-search' ); ?>">
<i class="fa fa-times" aria-hidden="true"></i>
</button>
<button class="circular-focus screen-reader-text" data-goto=".gutenbiz-header-search .search-field"><?php esc_html_e( 'Circular focus', 'gutenbiz' ); ?></button>
</div>
<div class="site-branding">
<div>
<?php the_custom_logo(); ?>
<div>
<?php if ( is_front_page() ) :
?>
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
<?php
else :
?>
<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
<?php
endif;
$description = get_bloginfo( 'description', 'display' );
if ( $description || is_customize_preview() ) :
?>
<p class="site-description"><?php echo $description; /* WPCS: xss ok. */ ?></p>
<?php endif; ?>
</div>
</div>
</div>
<div class="<?php echo Gutenbiz_Helper::with_prefix( 'navigation-n-options' ); ?>">
<nav class="gutenbiz-main-menu" id="site-navigation">
<?php Gutenbiz_Helper::get_menu( 'primary', true ); ?>
</nav>
<?php do_action( Gutenbiz_Helper::fn_prefix( 'after_primary_menu' ) ); ?>
</div>
</section>
</div>
</div>
<!-- nav bar section end -->