<?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 } ?>
dehradun_temprature_rise
National

Highest Temperature in Dehradun, heat record in Haridwar

The situation in Uttarakhand is terrible due to heat. From plains to hilly areas, life is affected by the heat. This year the heat has broken all the old records. The temperature in the plains has crossed 40 degrees which is six to nine degrees Celsius more than normal. The Meteorological Department has issued a warning of heat waves and severe heat.

]Uttarakhand is facing the brunt of severe heat. From plains to mountains, life is affected due to the heat. The mercury has broken all records in the plains. People are suffering due to the heat. For the last 10 days, the temperature in the plains has been recorded above 40 degrees Celsius, which is six to nine degrees Celsius more than normal.

At the same time, the humid heat is making people miserable even at night. The temperature in Haridwar reached its highest level. Whereas, in Doon too, this June is the hottest in 122 years.

Instead of getting relief from the scorching heat in the state, the mercury is continuously rising. The sun is scorching and fire is pouring from the sky. The maximum temperature in Dehradun was recorded at 43.1 degrees Celsius on Monday. Earlier, only in 1902, the temperature in June had crossed 43 degrees Celsius.

At the same time, it is being claimed that the maximum temperature in Haridwar was recorded at 44.5 degrees Celsius, which is an all-time record. At present, there is little chance of getting relief from the heat in the plains. However, the mood of the weather has started changing in the mountainous regions. On Monday, there were showers in the high-altitude areas of Kumaon.

According to the Director of Meteorological Center, Bikram Singh, light rain may occur in the higher reaches of Uttarkashi, Chamoli, Rudraprayag, Bageshwar and Pithoragarh today. There is a possibility of gusty winds and lightning along with thunder in the surrounding lower areas. A warning has been issued regarding heat wave in the plains.

Temperature of major cities in Uttarakhand

city ​​max temperature above normal

Haridwar, 44.5, 08

Roorkee, 44.0, 07

Dehradun, 43.1, 09

Udhamsingh Nagar, 41.6, 06

Nainital, 35.9, 07

Mukteshwar, 32.0, 09

Tehri, 31.4, 04

Mussoorie, 30.7, 07

Extreme heat during the day, no relief even at night

It is very difficult to live in the plains of Uttarakhand due to the scorching heat during the day. There is no relief even at night. While the maximum temperature in Doon is nine degrees Celsius higher than normal, the minimum temperature is also five degrees Celsius higher. Whereas during these days the maximum temperature of Doon is 34-35 and the minimum temperature is 22-23 degrees Celsius. In such a situation, hot winds and humid heat are felt even at night.

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