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

Varunavat Landslide: Cause of landslide revealed

Varunavat Landslide The cause of the landslide that occurred three days ago has been revealed. The technical committee that returned after inspecting the landslide area has submitted its report to the District Magistrate. At present no fear of any major danger has been expressed. Let us tell you that District Magistrate Dr. Meharban Singh Bisht had constituted a 10-member technical committee to survey the impact and affected area due to landslide.
Jagran correspondent, Uttarkashi. Varunavat Landslide: The technical committee that inspected the landslide area of ​​Varunavat Mountain believes that the landslide that occurred three days ago was caused by increased pressure due to excessive rainfall and waterlogging in the open parts of the hill. The committee has also considered the rocks in the area to be jointed and fractured as the reason for the landslide.

The committee said in its report that jointed quartzite and phyllite rocks are present in the area. They have three sets of treaties. The junction area conforming to the normal slope caused the occurrence of landslides. The committee has suggested taking measures to prevent the spread of landslides in the area and conducting a detailed investigation by the Geological Survey of India.

At present, no major threat has been expressed. Heavy rain occurred in Uttarkashi district headquarters and surrounding areas late Tuesday night. During this time, a part of Varunavat mountain had cracked in the Gofiyara area. Due to this, a large amount of stones and debris fell in the Gofiyara Colony, in which many two-wheelers and four-wheelers were buried. Due to this, panic spread in the area.

District Magistrate Dr. Meherban Singh Bisht had constituted a 10-member technical committee to survey the cause, impact, and affected area of ​​the landslide. On Wednesday morning, the committee members reached the affected area inspected it, and submitted their report to the District Magistrate late at night. It stated that Uttarkashi city received 122 mm of rainfall in the next 24 hours from 8 am on August 27, while the entire month received 703 mm, which is much more than normal.

Given this, the committee considered the increase in pore pressure due to heavy rainfall and waterlogging in open spaces of the hill, and the jointed and fractured state of the rocks as the main reasons for the landslide. The District Magistrate said that along with sending the report to the government, the opinion of experts will be taken. After this, immediate and long-term measures will be ensured for safety and treatment in the affected area.

Given any possible threats, measures will be taken to protect life and property. The situation in the area is normal now and the administration is continuously monitoring it.



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