File: /home/zwafgyp/coolswim/wp-content/themes/landing-pageasy/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 landing Lite
*/
?><!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="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php
if ( function_exists( 'wp_body_open' ) ) {
wp_body_open();
}
?>
<div class="main-container">
<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'landing-pageasy' ); ?></a>
<header id="site-header" role="banner">
<?php if ( get_theme_mod( 'toggle_header_frontpage' ) == '' ) : ?>
<div class="primary-navigation header-activated">
<?php else : ?>
<?php if ( is_front_page() ) : ?>
<div class="primary-navigation header-activated">
<?php else : ?>
<div class="primary-navigation">
<?php endif; ?>
<?php endif; ?>
<a href="#" id="pull" class="toggle-mobile-menu"><?php _e('Menu', 'landing-pageasy'); ?></a>
<div class="container clear">
<nav id="navigation" class="primary-navigation mobile-menu-wrapper" role="navigation">
<?php if (has_custom_logo()) { ?>
<span id="logo" class="image-logo" itemprop="headline">
<?php the_custom_logo(); ?>
</span><!-- END #logo -->
<?php } else { ?>
<span class="site-logo" itemprop="headline">
<a href="<?php echo esc_url(home_url()); ?>"><?php bloginfo( 'name' ); ?></a>
</span><!-- END #logo -->
<?php } ?>
<?php if ( has_nav_menu( 'primary' ) ) { ?>
<?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'menu clearfix', 'container' => '' ) ); ?>
<?php } else { ?>
<ul class="menu clearfix">
<?php wp_list_categories('title_li='); ?>
</ul>
<?php } ?>
</nav><!-- #site-navigation -->
</div>
</div>
<div class="container clear">
<div class="site-branding">
<div class="site-title">
<?php bloginfo( 'name' ); ?>
</div>
<div class="site-description">
<?php bloginfo( 'description' ); ?>
</div>
<div class="social-media-wrap">
<?php if (get_theme_mod('twitter_url') ) : ?>
<a href="<?php echo esc_url(get_theme_mod('twitter_url')) ?>" target="_blank">
<i class="fa fa-twitter"></i>
</a>
<?php endif; ?>
<?php if (get_theme_mod('facebook_url') ) : ?>
<a href="<?php echo esc_url(get_theme_mod('facebook_url')) ?>" target="_blank">
<i class="fa fa-facebook-f"></i>
</a>
<?php endif; ?>
<?php if (get_theme_mod('soundcloud_url') ) : ?>
<a href="<?php echo esc_url(get_theme_mod('soundcloud_url')) ?>" target="_blank">
<i class="fa fa-soundcloud"></i>
</a>
<?php endif; ?>
<?php if (get_theme_mod('pinterest_url') ) : ?>
<a href="<?php echo esc_url(get_theme_mod('pinterest_url')) ?>" target="_blank">
<i class="fa fa-pinterest"></i>
</a>
<?php endif; ?>
<?php if (get_theme_mod('youtube_url') ) : ?>
<a href="<?php echo esc_url(get_theme_mod('youtube_url')) ?>" target="_blank">
<i class="fa fa-youtube"></i>
</a>
<?php endif; ?>
<?php if (get_theme_mod('linkedin_url') ) : ?>
<a href="<?php echo esc_url(get_theme_mod('linkedin_url')) ?>" target="_blank">
<i class="fa fa-linkedin"></i>
</a>
<?php endif; ?>
<?php if (get_theme_mod('twitch_url') ) : ?>
<a href="<?php echo esc_url(get_theme_mod('twitch_url')) ?>" target="_blank">
<i class="fa fa-twitch"></i>
</a>
<?php endif; ?>
<?php if (get_theme_mod('instagram_url') ) : ?>
<a href="<?php echo esc_url(get_theme_mod('instagram_url')) ?>" target="_blank">
<i class="fa fa-instagram"></i>
</a>
<?php endif; ?>
</div>
</div><!-- .site-branding -->
</div>
</header><!-- #masthead -->
<!-- Upper widgets -->
<?php if ( is_active_sidebar( 'top-widget-first') || is_active_sidebar( 'top-widget-second') || is_active_sidebar( 'top-widget-third') ) : ?>
<div class="container">
<div class="upper-widgets-grid-wrapper">
<?php if ( is_active_sidebar( 'top-widget-first' ) ) : ?>
<div class="upper-widgets-grid">
<div class="top-column-widget">
<?php dynamic_sidebar( 'top-widget-first' ); ?>
</div>
</div>
<?php endif; ?>
<?php if ( is_active_sidebar( 'top-widget-second' ) ) : ?>
<div class="upper-widgets-grid">
<div class="top-column-widget">
<?php dynamic_sidebar( 'top-widget-second' ); ?>
</div>
</div>
<?php endif; ?>
<?php if ( is_active_sidebar( 'top-widget-third' ) ) : ?>
<div class="upper-widgets-grid">
<div class="top-column-widget">
<?php dynamic_sidebar( 'top-widget-third' ); ?>
</div>
</div>
<?php endif; ?>
</div>
</div>
<?php endif; ?>
<!-- / Upper widgets -->