File: h:/root/home/kytoffice-001/www/expresstinou/wp-content/themes/moza-blog/header.php
<?php
/**
* The header for our theme
*
* This is the template that displays all of the <head> section and everything up until <div id="content">
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Moza Blog
*/
?>
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php
if ( function_exists( 'wp_body_open' ) ) {
wp_body_open();
}
else { do_action( 'wp_body_open' );
}
?>
<div id="page" class="site">
<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'moza-blog' ); ?></a>
<header id="masthead" class="header-area <?php if(has_header_image() && is_front_page()): ?>moza-header-img<?php endif; ?>">
<?php if(has_header_image() && is_front_page()): ?>
<div class="header-img">
<?php the_header_image_tag(); ?>
</div>
<?php endif; ?>
<div class="container">
<div class="row">
<div class="col-lg-4">
<div class="site-branding text-left">
<?php
the_custom_logo();
if ( is_front_page() && is_home() ) :
?>
<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;
$moza_description = get_bloginfo( 'description', 'display' );
if ( $moza_description || is_customize_preview() ) :
?>
<p class="site-description"><?php echo esc_html($moza_description); ?></p>
<?php endif; ?>
</div>
</div>
<div class="col-lg-8">
<div class="moza-responsive-menu"></div>
<button class="screen-reader-text menu-close"><?php esc_html_e( 'Close Menu', 'moza-blog' ); ?></button>
<div class="mainmenu">
<?php
wp_nav_menu( array(
'theme_location' => 'menu-1',
'menu_id' => 'primary-menu',
) );
?>
</div>
</div>
</div>
</div>
</header><!-- #masthead -->