Created
October 5, 2015 22:48
-
-
Save jesuscast/a87bc1a54c6e3005b6b1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
?> | |
<!-- Slider | |
================================================== --> | |
<div class="slider-wrapper"> | |
<?php | |
if ( is_active_sidebar( 'he-main-slider' ) ) { | |
?> | |
<div class="menu-top-wrapper"> | |
<div class="button-menu-top" id="showLeftPush" > | |
<span class="icon-menu-mobile"><i class="fa fa-bars"></i></span> | |
<span class="text"><?php _e('Menu',ET_DOMAIN)?></span> | |
</div> | |
<div class="logo-menu-top"> | |
<a href="<?php echo home_url(); ?>" class="logo-text"> | |
<?php if (et_get_option("et_website_logo")){ ?> | |
<img src="<?php echo et_get_option("et_website_logo");?>"/> | |
<?php } else { ?> | |
<img src="<?php echo TEMPLATEURL . '/images/logo.png' ?>"/> | |
<?php } ?> | |
</a> | |
</div> | |
</div> | |
<div class="scroll-to-explore"><?php _e('Scroll to explore',ET_DOMAIN) ?> <i class="fa fa-angle-down"></i></div> | |
<?php | |
dynamic_sidebar( 'he-main-slider' ); | |
} | |
?> | |
</div> | |
<!-- Slider / End --> | |
<?php } | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment