| Server IP : 172.67.162.67 / Your IP : 216.73.217.154 Web Server : Apache System : Linux vps42439 6.8.0-136-generic #136~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 3 16:29:11 UTC x86_64 User : dh_7hi3h9 ( 6349477) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/dh_7hi3h9/regalflower.com/wp-content/themes/thestory/ |
Upload File : |
<!DOCTYPE html>
<html <?php language_attributes() ?>>
<head>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<title><?php wp_title(pexeto_option('seo_separator'), true, 'right'); ?></title>
<?php
//print the Facebook and Google+ meta tags to include the featured image
//of the post/page when it is shared
$social_image = pexeto_get_social_image();
if(!empty($social_image)){
?>
<!-- facebook meta tag for image -->
<meta property="og:image" content="<?php echo $social_image; ?>"/>
<!-- Google+ meta tag for image -->
<meta itemprop="image" content="<?php echo $social_image; ?>">
<?php } ?>
<!-- Mobile Devices Viewport Resset-->
<?php if(pexeto_option('responsive_layout')!==false){ ?>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<?php } ?>
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- <meta name="viewport" content="initial-scale=1.0, user-scalable=1" /> -->
<?php if(pexeto_option('seo_keywords')){ ?>
<!-- Keywords-->
<meta name="keywords" content="<?php echo pexeto_option('seo_keywords'); ?>" />
<?php } ?>
<?php
//remove SEO indexation and following for the selected archives pages
if(pexeto_should_set_meta_noindex()){ ?>
<meta name="robots" content="noindex,follow" />
<?php } ?>
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php if(pexeto_option('favicon')){ ?>
<link rel="shortcut icon" type="image/x-icon" href="<?php echo pexeto_option('favicon'); ?>" />
<?php } ?>
<!--[if lt IE 9]>
<script src="<?php echo get_template_directory_uri(); ?>/js/html5shiv.js"></script>
<![endif]-->
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="main-container" >
<div class="page-wrapper" >
<!--HEADER -->
<?php
//get the header background options
$pexeto_bg_data = pexeto_get_header_bg_data();
?>
<div class="header-wrapper" <?php echo $pexeto_bg_data['color_css']; ?>>
<?php
if(!empty($pexeto_bg_data['img'])){
//print the header background image div
echo $pexeto_bg_data['img'];
}
?>
<header id="header">
<div class="section-boxed section-header">
<?php do_action('pexeto_before_header'); ?>
<div id="logo-container">
<?php
$logo_image = pexeto_option('retina_logo_image') ? pexeto_option('retina_logo_image') : pexeto_option('logo_image');
if(empty($logo_image)){
$logo_image=get_template_directory_uri().'/images/[email protected]';
}
?>
<a href="<?php echo esc_url(home_url('/')); ?>"><img src="<?php echo $logo_image; ?>" alt="<?php esc_attr(bloginfo('name')); ?>" /></a>
</div>
<div class="mobile-nav">
<span class="mob-nav-btn"><?php _e( 'Menu', 'pexeto' ); ?></span>
</div>
<nav class="navigation-container">
<div id="menu" class="nav-menu">
<?php
$menu_args = array(
'theme_location' => 'pexeto_main_menu',
'container' => false,
'menu_class' => 'menu-ul');
if(has_nav_menu( 'pexeto_main_menu' )){
$menu_args['walker'] = new PexetoMenuWalker();
}
wp_nav_menu($menu_args); ?>
</div>
<div class="header-buttons">
<?php
//header icons and buttons
if(PEXETO_WOOCOMMERCE_ACTIVE && function_exists('pexeto_print_woocommerce_cart_button')){
//WooCommerce shopping cart button
pexeto_print_woocommerce_cart_button();
}
if(pexeto_option('header_search')){
?><div class="header-search">
<?php get_search_form(true); ?>
<a href="#" class="header-search-btn">Search</a></div>
<?php }
locate_template( array( 'includes/social-icons.php' ), true, false ); ?>
</div>
</nav>
<?php do_action('pexeto_after_header'); ?>
<div class="clear"></div>
<div id="navigation-line"></div>
</div>
</header><!-- end #header -->