<?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 } ?>
Uttarakhand-snowfall
Trending news

How will the weather be in Uttarakhand till December 7?

Uttarakhand Winters: Snowfall has not occurred in Uttarakhand yet, but the possibility remains (Snowfall Prediction). Snowfall is expected at an altitude of more than 3500 meters. At the same time, it is cold in the plains, but due to the extremely dry weather, problems are also being felt. Why is it getting so dry cold? In this news you will know and also know that in which districts (District Wise Weather) what is the mood of the weather. In Dehradun, the temperature remains between 14 to 16 degrees, which is higher than the average and last year’s temperature at this time.

Dehradun. The weather pattern has changed in Uttarakhand and icy winds have started blowing in the hilly areas. According to the Meteorological Center, where cold winds are blowing in the mountainous areas, there is a constant possibility of snowfall in the upper areas. Heavy snowfall is expected in 5 districts of the state. It is getting information that there may be light snowfall and rain at some places in the mountainous areas. Today, even on December 2, there may be light to moderate rain in many districts, so there is a possibility of snowfall in most areas of three districts. Let us tell you in which districts the Meteorological Department has predicted snowfall and rain.

Snowfall and rain are expected in most areas in the higher reaches of Uttarkashi, Rudraprayag, Chamoli, Bageshwar and Pithoragarh. At the same time, light to moderate rain and snowfall are likely in most areas of Pithoragarh, Chamoli and Bageshwar districts. It will also affect the plains districts and there will also be a drop in temperature. According to the Director of the Meteorological Department, Bikram Singh, the weather will remain dry after December 4 and people will get relief from the dry cold after this rain.

Why is it getting dry cold?
In November, the state has received 86% less rainfall than normal, due to which the dry cold weather continues in the state. There was absolutely no rain in the month of November in Almora, Champawat, Dehradun, Pauri Garhwal, Tehri Garhwal, Haridwar, Nainital and Udham Singh Nagar. In such a situation, the Meteorological Department says that due to the rains in the coming days, people will get relief from the dry cold.

According to Bikram Singh, the western disturbance is believed to be responsible for the change in the weather and the western disturbance is affecting the weather of North India. It is also a fact that there has not been any snowfall till the reach of the residential settlements of any district, nor is there any cold weather. Such an atmosphere is being created due to cold winds and the temperature may drop further in the coming days.

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