HEX
Server: Microsoft-IIS/10.0
System: Windows NT WIN8095 10.0 build 20348 (Windows Server 2016) AMD64
User: kytoffice-001 (0)
PHP: 7.4.30
Disabled: exec,passthru,shell_exec,system,proc_open,popen,curl_multi_exec,show_source
Upload Files
File: h:/root/home/kytoffice-001/www/expresstinou/wp-content/themes/graceful-zen-blog/header.php
<?php
/**
 * The header for our theme
 *
 * This is the template that displays the <head> section, Header and Navigation
 *
 * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
 *
 * @package Graceful Zen Blog
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
    <meta charset="<?php bloginfo( 'charset' ); ?>">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="profile" href="http://gmpg.org/xfn/11">
    <?php wp_head(); ?>
    <?php $accent_color = graceful_zen_blog_options( 'zen_accent_color' )."!important"; ?>
	<style type="text/css">
	    #top-navigation,
	    aside .graceful-widget h2,
	    .graceful-widget .widget-title {
	        border-bottom: 1px solid <?php echo esc_attr( $accent_color ); ?>;
	    }

	    aside .graceful-widget h2::after {
	        border-top: 8px solid <?php echo esc_attr( $accent_color ); ?>;
	    }

	    #graceful-zen-post-slider .read-more-btn,
	    #graceful-zen-post-slider .owl-dot.active {
	        background: <?php echo esc_attr( $accent_color ); ?>;
	    }

	    .navigation-search-button i {
	        color: <?php echo esc_attr( $accent_color ); ?>;
	    }

	    .graceful-zen-wave-svg path {
	        fill: <?php echo esc_attr( $accent_color ); ?>;
	    }
	    .left-menu-icon span {
	    	background-color: <?php echo esc_attr( $accent_color ); ?>;
	    }
	</style>
</head>
<body <?php body_class(); ?>>
    <?php wp_body_open(); ?>

	<?php
	if ( graceful_options( 'basic_header_width' ) === 'wrapped' ) {
	    $graceful_header_width = 'class=wrapped-content';
	} else {
	    $graceful_header_width = '';
	}
	if ( graceful_options( 'basic_content_width' ) === 'wrapped' ) {
	    $graceful_content_width = 'wrapped-content';
	} else {
	    $graceful_content_width = '';
	}
	?>

	<?php // Site Loading Animation
	get_template_part('template-parts/sections/site', 'loadinganim'); 
	?>

	<a class="skip-link screen-reader-text" href="#primary"><?php esc_html_e( 'Skip to content', 'graceful-zen-blog' ); ?></a>	

	<div id="site-container">
		<div id="site-header" <?php echo esc_attr( $graceful_header_width ); ?>>
		<?php
		get_template_part( 'template-parts/header/top', 'navigation' );
		get_template_part( 'template-parts/header/site', 'header' );
		get_template_part( 'template-parts/header/main', 'navigation' );
		?>
		</div><!-- site-header close -->

		<!-- Page Content -->
		<main id="primary" class="site-main">
		<?php
			if ( is_home() && !is_paged() ) {

				// Show Post Slider if enabled
				$graceful_post_slider_enabled = graceful_options('post_slider_label');

			    if ( $graceful_post_slider_enabled ) {
			        get_template_part('template-parts/sections/post', 'slider');
			    }

			    // Show Special Links if enabled
			    $graceful_special_links_enabled = graceful_zen_blog_options('special_links_show');

			    if ( $graceful_special_links_enabled ) {
			        get_template_part('template-parts/sections/special', 'links');
			    }
			}
		?>
		<div class="main-content clear-fix <?php echo esc_attr( $graceful_content_width ); ?>" data-layout="<?php echo esc_attr( graceful_page_layout() ); ?>" data-sidebar-sticky="<?php echo esc_attr( graceful_options( 'basic_sidebar_sticky' ) ); ?>">