<?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 } ?>
char-dham-yatra
National

Limit set to visit Kedarnath and Badrinath Darshan!

15 thousand devotees in Kedarnath Dham and 16 thousand devotees will be able to have darshan in Badrinath Dham

In view of the crowd of devotees in the Chardham Yatra, the tourism department has set a limit for devotees to visit the temple every day. Along with this, arrangements have also been made for the devotees to stay at many places like Srinagar after the completion of this daily limit.

The Char Dham Yatra in Uttarakhand is going to start on May 10. So far, more than 19 lakh devotees have registered for the Yatra. According to the report, last year about 55 lakh devotees came for darshan, due to which there were problems with many arrangements. Taking a lesson from this year, the Uttarakhand Police and Tourism Department have set a limit for devotees on a daily basis in the Char Dham Yatra.

According to the tourism department, during the Chardham Yatra, 15 thousand devotees will be able to have darshan of Baba Mahakal in Kedarnath Dham in a day. Whereas 16 thousand devotees will be able to have darshan in Badrinath Dham, 9 thousand in Yamunotri, and 11 thousand in Gangotri daily. Apart from this, barrier towns have also been prepared to stop the devotees in Trishikesh if this number increases.

You will have to stop here when your limit is reached

According to the tourism department, if anyone wants to go to Badrinath, he will first be stopped in Srinagar. If the limit here is reached, then the devotees will have to spend the night here. After this, the next day this process will continue in Rudraprayag, then Chamoli, Peepalkothi, and Joshimath. That is, you will be able to move forward only when your turn comes.

Protest against the government’s decision

Devotees going to Gangotri-Yamunotri will be stopped in Tehri, Chamba, Uttarkashi after the daily limit is completed. 20 to 30 thousand people will be able to stay in these towns at a time. There are hotel and homestay facilities here. At the same time, the hotel and homestay business people are angry with the Tourism Department for setting a limit on the darshan of devotees on a daily basis. Meanwhile, according to the association, this will affect the business. Whereas according to the President of the Uttarkashi Hotel Association, the economy of the state is based on tourism and pilgrimage. If the number of devotees is limited even in the six-month season, then their business may decrease. If the government does not withdraw the decision, then hotels and homestays will be closed.

For the first time, the journey to Adi Kailash and Om Parvat by road in Uttarakhand will begin about one and a half months in advance. This time the doors of the Adi Kailash temple will open on May 10.

<?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>