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

Uttarakhand Weather update

Uttarakhand Weather: In Uttarakhand in the morning and evening, from the mountain to the ground, the cold is causing trouble. There is a possibility of very dense fog in the Haridwar and Udham Singh Nagar districts on Tuesday. In view of this, a yellow alert has been issued.

Team Jagran, Dehradun: Uttarakhand Weather: In Uttarakhand, in the morning and evening, from the mountain to the ground, the cold is causing trouble. However, there was relief on Monday as it was a sunny day in most parts of the state. However, as soon as the evening came, the mercury started diving and people were forced to hide in their homes.

Director of the Meteorological Center Bikram Singh said that the weather is likely to remain dry in the state till January 6. There is a possibility of very dense fog in the Haridwar and Udham Singh Nagar districts on Tuesday. In view of this, a yellow alert has been issued.

Temperature of major cities on Monday

  • city, max, min
  • Dehradun, 20.6, 6.3
  • Mussoorie, 16.4, 5.1
  • Haridwar, 19.2, 7.2
  • Rishikesh, 20.7, 7.1
  • Nainital, 14.5, 5.1
  • Udham Singh Nagar, 18.5, 7.1
  • Mukteshwar, 13.4, 1.6
  • Tehri, 12.1, 3.1
  • (Note: Temperature is in degrees Celsius.)

Morning air services were affected due to dense fog from Dehradun

Morning air services are being affected due to dense fog at Dehradun airport. On Monday too, due to fog, a flight coming from Delhi had to be diverted, which was later canceled.

And two flights reached the airport late. Fog is affecting the air services operating at Dehradun Airport located at Jollygrant.

Due to dense fog in the region on Monday due to low visibility at the airport, the 7.20 am Alliance Air flight from Delhi had to be diverted and later canceled.

At the same time, the Indigo flight coming from Delhi at 8.45 in the morning reached 11.50 in the afternoon. No flight could land at the airport till 10 am.

After this, Indigo’s flight coming from Ahmedabad at 10.30 in the morning could also reach the airport after one and a half hours at 12. Earlier on Sunday too, one flight reached the airport one hour late and the other had to be diverted.

Passengers taking advantage of air services are also facing problems due to messing up of air services. When the weather cleared in the afternoon, other flights continued to operate as usual.

Kalinga Utkal four hours late

The effect of dense fog is also affecting rail services. Kalinga Utkal (Puri Express), which operates between Puri and Yoganagari Rishikesh, was also delayed by about four hours on Monday due to fog. Last few days also Kalinga Utkal Express reached Yognagari Rishikesh late due to fog.

This train operates daily between Rishikesh – Puri. This train reaches Yoganagari Rishikesh station at 9:50 PM. Whereas it leaves from here at 5:35 am.

On Monday night, this train could not reach Yoganagari at its scheduled time. Station Superintendent GS Parihar said that Kalinga Utkal is expected to reach here at 1:50 pm. Due to the late arrival of the train, this train can also be rescheduled in the return direction on Tuesday.

Comments are closed.

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