...........................................................................................................................................................................................................................................................................................................................@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%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/ |
Upload File : |
<?php
/**
* The Header for our theme.
* Displays all of the header section
* @package greenture
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- Latest IE rendering engine & Chrome Frame Meta Tags -->
<!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'><![endif]-->
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php wp_head(); ?>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
// Add smooth scrolling to all links
$("a").on('click', function(event) {
// Make sure this.hash has a value before overriding default behavior
if (this.hash !== "") {
// Prevent default anchor click behavior
event.preventDefault();
// Store hash
var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 800, function(){
// Add hash (#) to URL when done scrolling (default click behavior)
window.location.hash = hash;
});
} // End if
});
});
</script>
</head>
<body <?php body_class(); ?>>
<?php if( greenture_get_option('disable_page_loader') != 1 ) { ?>
<div class="pageloader"></div>
<?php } ?>
<div id="tpath_wrapper" class="wrapper-class">
<?php
$object_id = get_queried_object_id();
if( ( get_option('show_on_front') && get_option('page_for_posts') && is_home() ) || ( get_option('page_for_posts') && is_archive() && ! is_post_type_archive() )
&& ! ( is_tax('product_cat') || is_tax('product_tag' ) ) || ( get_option('page_for_posts') && is_search() ) ) {
$post_id = get_option('page_for_posts');
} else {
if( isset( $object_id ) ) {
$post_id = $object_id;
}
if( ! is_singular() ) {
$post_id = false;
}
}
$header_transparency = '';
$header_transparency = get_post_meta( $post_id, 'greenture_header_transparency', true );
if( isset( $header_transparency ) && $header_transparency == '' || $header_transparency == 'default' ) {
$header_transparency = greenture_get_option( 'header_transparency' );
}
$header_colortype = '';
$header_colortype = greenture_get_option( 'header_colortype' );
if( ! $header_transparency ) {
$header_transparency = "no-transparent";
}
if( ! $header_colortype ) {
$header_colortype = "dark";
}
?>
<div id="header" class="header-section">
<?php
if( $header_transparency == 'header_two' )
{
get_template_part('partials/header-2');
}
else{
get_template_part('partials/header-1');
}
?>
</div><!-- #header -->
<div id="section-top" class="greenture-section-top"></div>
<?php
if( is_object($post) ) {
$revslider_sc = get_post_meta( $post->ID, 'greenture_revslider_shortcode', true );
if( $revslider_sc != '0' && $revslider_sc != '' && function_exists( 'rev_slider_shortcode' ) ) {
echo '<div class="slider-section">';
echo do_shortcode($revslider_sc);
echo '</div>';
}
}
?>
<div id="main" class="main-section">
<!-- ============ Page Header ============ -->
<?php get_template_part('partials/page', 'header' ); ?>