<?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 } ?>
uttarkashi-tunnel-collapse
National

Igas Bagwal will be celebrated in Dehradun today for the safe evacuation of 41 laborers trapped in the tunnel.

Uttarakashi Silkayara Tunner CM Dhami: Prayers for the safe exit of 41 laborers trapped in the Silkayara Tunnel of Uttarkashi were answered. Under Operation Silkyara, when the last laborer came out of the tunnel and breathed open air, the message of changing Uttarakhand was also sent to the country and the world. Prime Minister Narendra Modi called Chief Minister Dhami and congratulated him on the safe return of 41 workers in Silkyara. 

Congress leader Pramod Tiwari said, there should be research taking lessons from the incident.

On the safe evacuation of 41 workers trapped in the Uttarkashi tunnel, Congress leader Pramod Tiwari said that the moment the news came that our 41 workers had been taken out safely, a wave of happiness ran across the country. Our country has reached the moon but we could not reach 50 meters away from us in 17 days. There should be research taking lessons from this incident. Who was this company after all? Who is the owner of this company? He was not found anywhere during this rescue operation.

1 worker showed courage: Bhaskar Khulbe

Former PMO advisor Bhaskar Khulbe said, that the courage shown by these 41 workers inspires us that calamities come but one should not lose courage. His courage boosted our morale and we were able to do this work.

A video of workers

A worker rescued at Chinyalisaur Community Health Center shared a video of his fellow workers who were safely pulled out of the Silkyara tunnel after 17 long days.

This rescue operation was full of challenges: Dhami

On the successful Silkyara Tunnel rescue mission, Uttarakhand Chief Minister Pushkar Singh Dhami says that this rescue operation was full of challenges. The Himalayas inspire us to remain steadfast and steadfast and to keep moving forward. 

We have got good news: Anil Bedia’s father

The father of Jharkhand laborer Anil Bedia, who was among all the 41 workers rescued from the Silkyara tunnel, says that yes, we got good news. I have spoken to him and he said he is fine but is undergoing checkups. Our only request to the government was that they should be rescued safely. Both the central government and the state government have helped.

‘Igas Bagwal’ at CM Dhami’s residence will be celebrated

‘Igas Bagwal’ at the residence of Chief Minister Pushkar Singh Dhami in Dehradun this evening to commemorate the successful rescue of 41 workers trapped in the Silkyara Tunnel. It will be celebrated.

My husband has been saved safely: Bhumika Chaudhary

Bhumika Choudhary, the wife of Ankit Kumar, who was rescued from the Silkyara Tunnel in Uttarakhand, says that as soon as we got the call that my husband had been rescued safely, we celebrated Diwali. My father has gone to Uttarakhand to bring back my husband.

Everyone is fine and very happy: Prem Chand Aggarwal

Uttarakhand Minister Prem Chand Aggarwal reached Chinyalisaur Community Health Center to meet 41 workers who were safely evacuated from the Silkyara Tunnel. After meeting 41 workers, Uttarakhand Minister Prem Chand Aggarwal said, everyone was fine and very happy. Everyone has also eaten food. 


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