<?php
/**
* The header for our theme.
*
* Displays all of the <head> section and everything up till <div id="content">
*
* @package astrip
*/
?>
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php esc_url(bloginfo('pingback_url')) ?>">
<?php
wp_head();
?>
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<?php
do_action('egns_header_template');
?>
<?php
if( Egns_Helpers::get_current_active_header() == 'header_three' ) {
echo wp_kses_post( "<div class='page-wrapper'>" );
echo wp_kses_post( "<div class='main-content-area'>" );
get_template_part('template-parts/header/content/header_three_mobile');
}
?>