balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

header-style-two.php (4087B)


      1 <?php
      2 $header_top_on_of   = welbim_get_options( 'header_top_on_of' );
      3 $header_on_of_user  = welbim_get_options( 'header_on_of_user' );
      4 $header_button_text = welbim_get_options( 'header_button_text' );
      5 $header_button_url  = welbim_get_options( 'header_button_url' );
      6 
      7 $header_twitter_url   = welbim_get_options( 'header_twitter_url' );
      8 $header_facebook_url  = welbim_get_options( 'header_facebook_url' );
      9 $header_pinterest_url = welbim_get_options( 'header_pinterest_url' );
     10 $header_instagram_url = welbim_get_options( 'header_instagram_url' );
     11 $header_phone         = welbim_get_options( 'header_phone' );
     12 $header_phone_tag     = welbim_get_options( 'header_phone_tag' );
     13 $mobile_menu_social   = welbim_get_options( 'mobile_menu_social' );
     14 
     15 $header_email     = welbim_get_options( 'header_email' );
     16 $header_phone     = welbim_get_options( 'header_phone' );
     17 $header_address   = welbim_get_options( 'header_address' );
     18 $header_btn_title = welbim_get_options( 'header_btn_title' );
     19 $header_btn_url   = welbim_get_options( 'header_btn_url' );
     20 
     21 $sticky_header_on = welbim_get_options( 'sticky_header_on' );
     22 
     23 ?>
     24 
     25 <!-- Main Header -->
     26 <header class="main-header header-style-two">
     27 
     28 	<!-- Header Top -->
     29 	<div class="header-top">
     30 		<div class="auto-container">
     31 			<div class="inner-container">
     32 				<div class="left-column">
     33 					<ul class="contact-info">
     34 						<li><a href="<?php echo esc_url( $header_email ); ?>"><i class="flaticon-email-1"></i><?php echo esc_html( $header_email ); ?></a></li>
     35 						<li><a href="<?php echo esc_html( $header_phone ); ?>"><i class="flaticon-telephone"></i><?php echo esc_html( $header_phone ); ?></a></li>
     36 						<li><i class="flaticon-pin"></i><?php echo esc_html( $header_address ); ?></li>
     37 					</ul>
     38 				</div>
     39 				<div class="right-column">
     40 					<ul class="social-icon">
     41 						<?php if ( $header_twitter_url ) { ?>
     42 							<li><a href="<?php echo esc_url( $header_twitter_url ); ?>"><i class="fab fa-twitter"></i></a></li>
     43 						<?php } ?>
     44 						<?php if ( $header_facebook_url ) { ?>
     45 							<li><a href="<?php echo esc_url( $header_facebook_url ); ?>"><i class="fab fa-facebook-square"></i></a></li>
     46 						<?php } ?>
     47 						<?php if ( $header_pinterest_url ) { ?>
     48 							<li><a href="<?php echo esc_url( $header_pinterest_url ); ?>"><i class="fab fa-pinterest-p"></i></a></li>
     49 						<?php } ?>
     50 						<?php if ( $header_instagram_url ) { ?>
     51 							<li><a href="<?php echo esc_url( $header_instagram_url ); ?>"><i class="fab fa-instagram"></i></a></li>
     52 						<?php } ?>
     53 					</ul>
     54 				</div>
     55 			</div>
     56 		</div>
     57 	</div>
     58 
     59 	<!-- Header Upper -->
     60 	<div class="header-upper">
     61 		<div class="auto-container">
     62 			<div class="inner-container">
     63 				<!--Logo-->
     64 				<?php do_action( 'welbim_header_logo' ); ?>
     65 				<div class="right-column">
     66 					<!--Nav Box-->
     67 					<div class="nav-outer">
     68 						<!--Mobile Navigation Toggler-->
     69 						<div class="mobile-nav-toggler"><img src="<?php echo WELBIM_IMG_URL; ?>icons/icon-bar.png" alt="<?php esc_attr_e( 'mobile menu icon', 'welbim' ); ?>"></div>
     70 
     71 						<!-- Main Menu -->
     72 						<?php do_action( 'welbim_header_menu' ); ?>
     73 					</div>
     74 				</div>
     75 				<div class="link-box">
     76 					<a href="<?php echo esc_url( $header_btn_url ); ?>" class="theme-btn btn-style-one"><span><?php echo esc_html( $header_btn_title ); ?></span></a>
     77 				</div>
     78 			</div>
     79 		</div>
     80 	</div>
     81 	<!--End Header Upper-->
     82 
     83 	<!-- Sticky Header  -->
     84 	<div class="sticky-header">
     85 		<div class="header-upper">
     86 			<div class="auto-container">
     87 				<div class="inner-container">
     88 					<!--Logo-->
     89 					<?php do_action( 'welbim_header_sticky_logo' ); ?>
     90 					<div class="right-column">
     91 						<!--Nav Box-->
     92 						<div class="nav-outer">
     93 							<!--Mobile Navigation Toggler-->
     94 							<div class="mobile-nav-toggler"><img src="<?php echo WELBIM_IMG_URL; ?>icons/icon-bar.png" alt="<?php esc_attr_e( 'mobile menu icon', 'welbim' ); ?>"></div>
     95 
     96 							<!-- Main Menu -->
     97 							<nav class="main-menu navbar-expand-md navbar-light">
     98 							</nav>
     99 						</div>
    100 					</div>
    101 				</div>
    102 			</div>
    103 		</div>
    104 	</div>
    105 	<!-- End Sticky Menu -->
    106 
    107 </header>
    108 <!-- End Main Header -->