<?php /** * The header for our theme * * This is the template that displays all of the <head> section and everything up until <div id="content"> * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package Markup */ $GLOBALS['markup_theme_options'] = markup_get_options_value(); global $markup_theme_options; $enable_slider = absint($markup_theme_options['markup_enable_slider']); $enable_box = $markup_theme_options['markup_enable_promo']; ?> <!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="https://gmpg.org/xfn/11"> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <?php //wp_body_open hook from WordPress 5.2 if ( function_exists( 'wp_body_open' ) ) { wp_body_open(); }else { do_action( 'wp_body_open' ); } ?> <div id="page" class="site "> <a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'markup' ); ?></a> <?php /** * Hook - markup_action_header. * * @hooked markup_add_main_header - 10 */ do_action( 'markup_action_header' ); ?> <?php if ($enable_slider == 1 && (is_home() || is_front_page())) { ?> <section class="slider-wrapper"> <?php /* * Slider Section Hook */ do_action('markup_action_slider'); ?> </section> <?php } ?> <?php if ($enable_box == 1 && (is_home() || is_front_page() ) ) { ?> <section class="promo-slider-wrapper"> <?php /* * Boxes Section Hook */ do_action('markup_action_boxes'); ?> </section> <?php } ?>
gangotri
Trending news

The doors of Gangotri-Yamunotri Dham will open on Akshaya Tritiya on May 03

The Chardham Yatra in Uttarakhand will start from May 03 with the opening of the doors of Gangotri and Yamunotri Dham. Whereas, the doors of Kedarnath Dham will open for pilgrims on May 06 and Badrinath Dham on May 8.

The doors of the world famous Gangotri and Yamunotri Dham will be opened on Tuesday, May 03, on Akshaya Tritiya for the devotees of the country and abroad. According to the schedule, the doors of Gangotri Dham will be opened at 11:15 in the morning and the doors of Yamunotri Dham will be opened at 12:15 in the afternoon for the devotees.

The doors of Kedarnath Dham will be opened for pilgrims on May 06 and those of Badrinath Dham on May 8. After this, for the next six months, devotees will become part of the darshan of Mother Ganga and Yamuna in Gangotri and Yamunotri Dham itself. 

Suresh Semwal, secretary of Gangotri Temple Committee, said that on Monday at 12:15 pm, Utsav Doli of Mother Ganga has left for her winter stay from Mukhba village for Gangotri Dham. Which will rest the night in Bhairav ​​temple located in Bhairav ​​valley. At the same time, it will reach Gangotri Dham at 8 am on Tuesday.

After this, the doors of Gangotri Dham will be opened at 11:15 am after Ganga worship, Ganga Sahasranama recitation and special worship with the law from 9 am in Gangotri Dham. Suresh Uniyal, secretary of Yamunotri Temple Committee, has told that all preparations have been made to open the doors of the temple.

Told that on Tuesday at 8.30 in the morning, the festival doli of Mother Yamuna will leave for Yamunotri Dham under the leadership of Shani Dev’s doli on the beat of traditional musical instruments from Kushimath during winter migration. Where the doors of Yamunotri Dham will be opened for darshan with Vedic chanting after the duly havan and worship.

CM Pushkar Singh Dhami today in Gangotri Dham, 
Uttarkashi.  
Chief Minister Pushkar Singh Dhami is coming to Uttarkashi on a one-day visit. Giving this information, District Magistrate Abhishek Ruhela said that Chief Minister Pushkar Singh Dhami will leave Dehradun by helicopter on May 3 at 9.15 am and will reach Harshil helipad of the district at 9.55 am.

After this, Chief Minister Dhami will reach Gangotri Dham by car at 10.30 am and participate in the inauguration of Gangotri Dham. After this Shri Dhami will reach Harshil Helipad by car at 12.45 PM and will leave Harsil Helipad at 1.20 PM for Dehradun by helicopter.

<?php /** * The template for displaying the footer * * Contains the closing of the #content div and all content after. * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package Markup */ global $markup_theme_options; $copyright = wp_kses_post($markup_theme_options['markup-footer-copyright']); if ( is_active_sidebar('footer-1') || is_active_sidebar('footer-2') || is_active_sidebar('footer-3') || is_active_sidebar('footer-4') ) { $count = 0; for ( $i = 1; $i <= 4; $i++ ) { if ( is_active_sidebar( 'footer-' . $i ) ) { $count++; } } $footer_col= 4; if( $count == 4 ) { $footer_col= 4; } elseif( $count == 3) { $footer_col= 3; } elseif( $count == 2) { $footer_col= 2; } elseif( $count == 1) { $footer_col= 1; } } ?> <div class="footer-full-width"> <?php if ( is_active_sidebar( 'full-width-footer' ) ){ dynamic_sidebar( 'full-width-footer' ); } ?> </div> <div class="footer-wrap"> <div class="container"> <div class="row"> <?php for ( $i = 1; $i <= 4 ; $i++ ){ if ( is_active_sidebar( 'footer-' . $i ) ) { ?> <div class="footer-col-<?php echo absint( $footer_col ); ?>"> <div class="footer-top-box wow fadeInUp"> <?php dynamic_sidebar( 'footer-' . $i ); ?> </div> </div> <?php } } ?> </div> </div> <footer class="site-footer"> <div class="container"> <div class="row"> <div class="col-sm-6"> <div class="copyright"> <?php echo wp_kses_post( $copyright ); ?> <span class="sep"> | </span> <?php /* translators: 1: Theme name, 2: Theme author. */ printf( esc_html__( 'Theme: %1$s by %2$s.', 'markup' ), 'Markup', '<a href="https://www.templatesell.com/">Template Sell</a>' ); ?> </div> </div> <div class="col-sm-6"> <div class="footer-menu"> <?php wp_nav_menu( array( 'theme_location' => 'footer', 'menu_id' => 'footer-menu', 'menu_class' => 'footer-menu', ) ); ?> </div> </div> </div> </div> </footer> <?php do_action('markup_go_to_top_hook'); ?> </div> </div><!-- #page --> <?php wp_footer(); ?> </body> </html>