...........................................................................................................................................................................................................................................................................................................................@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%PDF-1.5 MRK IS HERE %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 65.108.66.160 / Your IP : 216.73.217.50 Web Server : Apache System : Linux srv16.asso.com.ar 4.18.0-553.123.1.el8_10.x86_64 #1 SMP Tue May 5 04:00:43 EDT 2026 x86_64 User : alasaweborg ( 1047) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/alasaweborg/public_html/wp-content/themes/greenture/partials/ |
Upload File : |
<?php
$site_title = get_bloginfo( 'name' );
$site_url = home_url( '/' );
$site_description = get_bloginfo( 'description' );
$heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div';
$extra_class = '';
$logo_width = "";
$logo_height = "";
if( greenture_get_option( 'enable_shape_logo' ) == 1 ) {
$extra_class = ' logo-shape';
} ?>
<!-- ==================== Toggle Icon ==================== -->
<div class="navbar-header nav-respons tpath-logo<?php echo esc_attr( $extra_class ); ?>">
<?php
if( greenture_get_option( 'logo_width' ) != '' ) $logo_width = "width=". esc_attr( greenture_get_option( 'logo_width' ) ).'" ';
if( greenture_get_option( 'logo_height' ) != '' ) $logo_height = "height=". esc_attr( greenture_get_option( 'logo_height' ) ).'" ';
?>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" class="navbar-brand" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?> - <?php bloginfo( 'description' ); ?>" rel="home">
<?php
$logo_opt = greenture_get_option( 'logo' );
$meta_logo = get_post_meta( get_the_ID(), 'greenture_page_header_logo_image', true );
if( isset( $meta_logo ) && $meta_logo != '' ){
echo '<img class="img-responsive" src="' . esc_url( $meta_logo ) . '" alt="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '"'.$logo_width.$logo_height .'/>';
}
elseif( isset( $logo_opt ) && $logo_opt != '' ) {
echo '<img class="img-responsive" src="' . esc_url( $logo_opt ) . '" alt="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '"'.$logo_height.$logo_width.'/>';
}
elseif( greenture_get_option( 'logo_text' ) != '' ) {
echo '<div class="site-logo-text">'. greenture_get_option( 'logo_text' ) .'</div>';
}
else { ?>
<img src="<?php echo GREENTURE_THEME_URL; ?>/images/logo.png" class="img-responsive" alt="<?php the_title(); ?>" />
<?php } ?>
</a>
<div class="navbar-header nav-respons tpath-logo<?php echo esc_attr( $extra_class ); ?>">
</div>
<?php if( greenture_get_option( 'enable_donate_in_header' ) == '1' ) { ?>
<div class="header-mobile-menu">
<?php if( has_nav_menu( 'primary-menu' ) || greenture_get_option( 'enable_search_in_header' ) == 1 ) { ?>
<button type="button" class="navbar-toggle mobile-navbar-toggle" data-toggle="collapse" data-target=".tpath-mainnavbar-collapse">
<span class="sr-only"><?php esc_html_e('Toggle navigation', 'greenture'); ?></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<?php } ?>
<a class="btn-donate pull-left" href="<?php echo esc_url(greenture_get_option( 'donate_text_link' )); ?>">
<?php echo wp_kses_post(greenture_get_option( 'donate_text' )); ?>
</a>
</div>
<?php } ?>
</div>