| Server IP : 104.26.3.156 / Your IP : 216.73.216.185 Web Server : nginx/1.27.1 System : Linux us-1 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64 User : vinodai ( 3134) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v1396/wwwindicidolscom/public_html/wp-content/themes/shakti/ |
Upload File : |
<?php
/**
* The Header: Logo and main menu
*
* @package SHAKTI
* @since SHAKTI 1.0
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?> class="no-js<?php
// Class scheme_xxx need in the <html> as context for the <body>!
echo ' scheme_' . esc_attr( shakti_get_theme_option( 'color_scheme' ) );
?>">
<head>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php
if ( function_exists( 'wp_body_open' ) ) {
wp_body_open();
} else {
do_action( 'wp_body_open' );
}
do_action( 'shakti_action_before_body' );
?>
<div class="<?php echo esc_attr( apply_filters( 'shakti_filter_body_wrap_class', 'body_wrap' ) ); ?>" <?php do_action('shakti_action_body_wrap_attributes'); ?>>
<?php do_action( 'shakti_action_before_page_wrap' ); ?>
<div class="<?php echo esc_attr( apply_filters( 'shakti_filter_page_wrap_class', 'page_wrap' ) ); ?>" <?php do_action('shakti_action_page_wrap_attributes'); ?>>
<?php do_action( 'shakti_action_page_wrap_start' ); ?>
<?php
$shakti_full_post_loading = ( shakti_is_singular( 'post' ) || shakti_is_singular( 'attachment' ) ) && shakti_get_value_gp( 'action' ) == 'full_post_loading';
$shakti_prev_post_loading = ( shakti_is_singular( 'post' ) || shakti_is_singular( 'attachment' ) ) && shakti_get_value_gp( 'action' ) == 'prev_post_loading';
// Don't display the header elements while actions 'full_post_loading' and 'prev_post_loading'
if ( ! $shakti_full_post_loading && ! $shakti_prev_post_loading ) {
// Short links to fast access to the content, sidebar and footer from the keyboard
?>
<a class="shakti_skip_link skip_to_content_link" href="#content_skip_link_anchor" tabindex="<?php echo esc_attr( apply_filters( 'shakti_filter_skip_links_tabindex', 1 ) ); ?>"><?php esc_html_e( "Skip to content", 'shakti' ); ?></a>
<?php if ( shakti_sidebar_present() ) { ?>
<a class="shakti_skip_link skip_to_sidebar_link" href="#sidebar_skip_link_anchor" tabindex="<?php echo esc_attr( apply_filters( 'shakti_filter_skip_links_tabindex', 1 ) ); ?>"><?php esc_html_e( "Skip to sidebar", 'shakti' ); ?></a>
<?php } ?>
<a class="shakti_skip_link skip_to_footer_link" href="#footer_skip_link_anchor" tabindex="<?php echo esc_attr( apply_filters( 'shakti_filter_skip_links_tabindex', 1 ) ); ?>"><?php esc_html_e( "Skip to footer", 'shakti' ); ?></a>
<?php
do_action( 'shakti_action_before_header' );
// Header
$shakti_header_type = shakti_get_theme_option( 'header_type' );
if ( 'custom' == $shakti_header_type && ! shakti_is_layouts_available() ) {
$shakti_header_type = 'default';
}
get_template_part( apply_filters( 'shakti_filter_get_template_part', "templates/header-" . sanitize_file_name( $shakti_header_type ) ) );
// Side menu
if ( in_array( shakti_get_theme_option( 'menu_side' ), array( 'left', 'right' ) ) ) {
get_template_part( apply_filters( 'shakti_filter_get_template_part', 'templates/header-navi-side' ) );
}
// Mobile menu
get_template_part( apply_filters( 'shakti_filter_get_template_part', 'templates/header-navi-mobile' ) );
do_action( 'shakti_action_after_header' );
}
?>
<?php do_action( 'shakti_action_before_page_content_wrap' ); ?>
<div class="page_content_wrap<?php
if ( shakti_is_off( shakti_get_theme_option( 'remove_margins' ) ) ) {
if ( empty( $shakti_header_type ) ) {
$shakti_header_type = shakti_get_theme_option( 'header_type' );
}
if ( 'custom' == $shakti_header_type && shakti_is_layouts_available() ) {
$shakti_header_id = shakti_get_custom_header_id();
if ( $shakti_header_id > 0 ) {
$shakti_header_meta = shakti_get_custom_layout_meta( $shakti_header_id );
if ( ! empty( $shakti_header_meta['margin'] ) ) {
?> page_content_wrap_custom_header_margin<?php
}
}
}
$shakti_footer_type = shakti_get_theme_option( 'footer_type' );
if ( 'custom' == $shakti_footer_type && shakti_is_layouts_available() ) {
$shakti_footer_id = shakti_get_custom_footer_id();
if ( $shakti_footer_id ) {
$shakti_footer_meta = shakti_get_custom_layout_meta( $shakti_footer_id );
if ( ! empty( $shakti_footer_meta['margin'] ) ) {
?> page_content_wrap_custom_footer_margin<?php
}
}
}
}
do_action( 'shakti_action_page_content_wrap_class', $shakti_prev_post_loading );
?>"<?php
if ( apply_filters( 'shakti_filter_is_prev_post_loading', $shakti_prev_post_loading ) ) {
?> data-single-style="<?php echo esc_attr( shakti_get_theme_option( 'single_style' ) ); ?>"<?php
}
do_action( 'shakti_action_page_content_wrap_data', $shakti_prev_post_loading );
?>>
<?php
do_action( 'shakti_action_page_content_wrap', $shakti_full_post_loading || $shakti_prev_post_loading );
// Single posts banner
if ( apply_filters( 'shakti_filter_single_post_header', shakti_is_singular( 'post' ) || shakti_is_singular( 'attachment' ) ) ) {
if ( $shakti_prev_post_loading ) {
if ( shakti_get_theme_option( 'posts_navigation_scroll_which_block' ) != 'article' ) {
do_action( 'shakti_action_between_posts' );
}
}
// Single post thumbnail and title
$shakti_path = apply_filters( 'shakti_filter_get_template_part', 'templates/single-styles/' . shakti_get_theme_option( 'single_style' ) );
if ( shakti_get_file_dir( $shakti_path . '.php' ) != '' ) {
get_template_part( $shakti_path );
}
}
// Widgets area above page
$shakti_body_style = shakti_get_theme_option( 'body_style' );
$shakti_widgets_name = shakti_get_theme_option( 'widgets_above_page' );
$shakti_show_widgets = ! shakti_is_off( $shakti_widgets_name ) && is_active_sidebar( $shakti_widgets_name );
if ( $shakti_show_widgets ) {
if ( 'fullscreen' != $shakti_body_style ) {
?>
<div class="content_wrap">
<?php
}
shakti_create_widgets_area( 'widgets_above_page' );
if ( 'fullscreen' != $shakti_body_style ) {
?>
</div>
<?php
}
}
// Content area
do_action( 'shakti_action_before_content_wrap' );
?>
<div class="content_wrap<?php echo 'fullscreen' == $shakti_body_style ? '_fullscreen' : ''; ?>">
<?php do_action( 'shakti_action_content_wrap_start' ); ?>
<div class="content">
<?php
do_action( 'shakti_action_page_content_start' );
// Skip link anchor to fast access to the content from keyboard
?>
<a id="content_skip_link_anchor" class="shakti_skip_link_anchor" href="#"></a>
<?php
// Single posts banner between prev/next posts
if ( ( shakti_is_singular( 'post' ) || shakti_is_singular( 'attachment' ) )
&& $shakti_prev_post_loading
&& shakti_get_theme_option( 'posts_navigation_scroll_which_block' ) == 'article'
) {
do_action( 'shakti_action_between_posts' );
}
// Widgets area above content
shakti_create_widgets_area( 'widgets_above_content' );
do_action( 'shakti_action_page_content_start_text' );