
PK 
<?php
/**
* Menu icon header.
*
* @package The7
* @since 5.7.0
*/
// File Security Check
if ( ! defined( 'ABSPATH' ) ) { exit; }
?>
<?php presscore_get_template_part( 'theme', 'header/mixed-navigation', presscore_get_mixed_header_navigation() ); ?>
<div <?php presscore_mixed_header_class( 'masthead mixed-header' ); ?> role="banner">
<?php presscore_get_template_part( 'theme', 'header/top-bar' ); ?>
<header class="header-bar">
<?php presscore_get_template_part( 'theme', 'header/mixed-branding' ); ?>
<?php presscore_header_menu_icon(); ?>
</header>
</div>


PK 99