HEX
Server: Apache
System: Linux host35.server.ae 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64
User: nokatech (2100)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/nokatech/public_html/wp-content/themes/around/header.php
<?php
/**
 * The header for our theme.
 *
 * Displays all of the <head> section
 *
 * @package around
 */

?><!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">

<?php wp_head(); ?>
</head>

<body <?php body_class(); ?>><?php

wp_body_open(); 

if ( apply_filters( 'around_page_animation', filter_var( get_theme_mod( 'enable_page_loading_animation', 'yes' ), FILTER_VALIDATE_BOOLEAN ) ) ) { ?>
	<div class="cs-page-loading active">
	    <div class="cs-page-loading-inner">
	        <div class="cs-page-spinner"></div><span><?php echo esc_html__('Loading...', 'around'); ?></span>
	    </div>
	</div><?php
}


do_action( 'around_before_site' );
    
do_action( 'around_before_header' );

$header = function_exists( 'around_navbar_variant' ) ? around_navbar_variant() : 'solid';
get_template_part( 'templates/navbar/navbar', $header );