| Server IP : 198.38.94.67 / Your IP : 216.73.217.178 Web Server : LiteSpeed System : Linux d6054.dxb1.stableserver.net 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64 User : azfilmst ( 1070) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/azfilmst/public_html/wp-content/themes/frames/ |
Upload File : |
<?php
/**
* The template for displaying the header
*
* @package HaruTheme
* @version 1.0.0
* @author Administrator <admin@harutheme.com>
* @copyright Copyright (c) 2017, HaruTheme
* @license http://opensource.org/licenses/gpl-2.0.php GPL v2 or later
* @link http://harutheme.com
*/
?>
<!DOCTYPE html>
<!-- Open HTML -->
<html <?php language_attributes(); ?>>
<!-- Open Head -->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="//gmpg.org/xfn/11">
<?php if ( ! function_exists( 'has_site_icon' ) || ! has_site_icon() ) : ?>
<?php
$custom_favicon = haru_get_option('haru_custom_favicon');
if ( isset($custom_favicon) && !empty($custom_favicon['url']) ) :
?>
<link rel="shortcut icon" href="<?php echo esc_url( haru_get_option( 'haru_custom_favicon' )['url'] ); ?>" />
<?php endif; ?>
<?php endif; ?>
<?php wp_head(); ?>
</head>
<!-- Close Head -->
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<!-- Open Haru Main -->
<div id="haru-main">
<!-- Open Haru Content Main -->
<div id="haru-content-main">
<div class="haru-single-header">
<?php
if ( have_posts() ) :
// Start the Loop.
while ( have_posts() ) : the_post();
the_content();
endwhile;
// End the Loop.
endif;
?>
</div>
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>