
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
/**
 * Secondary Navigation Bar
 * Have a look at framework/hooks/actions to see what is hooked into the header
 * See all header parts at template-parts/header/
 *
 * @package Authentic
 * @subpackage Template Parts
 * @since Authentic 2.0.0
 * @version 1.0.0
 */

$left      = get_theme_mod( 'topbar_content_left_select', 'menu' );
$right     = get_theme_mod( 'topbar_content_right_select', 'social' );
$container = get_theme_mod( 'topbar_container', 'container' );

?>

<div class="topbar hidden-md-down">
	<div class="<?php echo esc_html( $container ); ?>">
		<nav class="navbar">

		<?php if ( 'none' !== $left ) { ?>

			<div class="col-left">
				<?php csco_get_header_content( 'topbar_content_left', 'menu' ); ?>
			</div>

		<?php } if ( 'none' !== $right ) { ?>

			<div class="col-right">
				<?php csco_get_header_content( 'topbar_content_right', 'social' ); ?>
			</div>

		<?php } ?>

		</nav>
	</div>
</div>
