<?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 } ?>
haridwar-evening
National Trending news

Haridwar Ganga Flood Alert: Banganga flowing near the warning mark, Haridwar may be submerged

Uttarakhand News: The officials of the administration have become alert due to the increase in the water level of Banganga. On the other hand, Alaknanda is also flowing near the warning level in Joshimath. There can be a danger of flood due to this. People living on the banks of river Ganga are being appealed to go to safer places.

Rashmi Khatri, Dehradun: Ganga is flowing near the danger mark in Haridwar. The water level of Ganga has increased due to the rains in the mountainous region. Because of this people living on the banks of the river are being alerted. According to the report of the Central Water Commission Office Haridwar, the water level of Banganga (Raisi district Haridwar) increased on Thursday morning. In view of the increase in the water level, the State Emergency Operation Center has instructed the District Magistrate Haridwar to keep all the works active for rescue and relief work. He has also directed the District Magistrate to send information every hour to the State Emergency Operation Center. Numbers have been issued to give any information related to the disaster.

According to Central Flood Control Room Irrigation Department Uttarakhand, Alaknanda is flowing around the warning water level in Joshimath. While the water level of Sonali River in Roorkee is currently well below the warning mark. Ganga is currently flowing at 338.85 meters at Rishikesh Triveni Ghat. Here the water level of the Ganges is at the danger mark of 340.50. The water level of river Ganga in Haridwar is 2 meters below the danger mark. The Ganges is flowing here at 292 meters while the danger level is 294 meters. The water level of Ganga is increasing due to the rains in the mountainous areas. The State Emergency Operation Center has instructed the Haridwar district administration to be vigilant in view of the flood situation that occurred due to the breach of Sonali river embankment in the Laksar area due to torrential rains.

Please tell that there is a high alert in the districts situated on the banks of the Ganges. SDRF personnel are deployed along the banks of the Ganga with rescue and relief equipment. If the water level of Ganga continues to rise in this way, then the city of Haridwar may be submerged once again in the coming days. Due to filling of water in the low-lying areas, there can be flood and in view of the possibility of heavy loss, the district administration SDRF NDRF has been asked to be alert. People and villages living on the banks of the Ganges are being told to be vigilant and appeals are also being made to move to safer places as the water in the Ganges rises.

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