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

Tawang Clash: In Uttarakhand’s Barahoti and Mana Pass

Tawang Clash China is not deterring from its antics. Chinese soldiers have intruded many times in the Barahoti and Mana passes of the Chamoli district. Along with the army, the border villages of Uttarakhand are also standing as a shield on the China border.

Team Jagran, Dehradun: Tawang Clash: China is not deterring from its antics. After eastern Ladakh, it has now dared to confront the Indian Army in Tawang in Arunachal. Here in Uttarakhand too, China has been repeatedly doing provocations.

Chinese soldiers have intruded many times in the Barahoti and Mana passes of the Chamoli district. At the same time, Chinese helicopters have also often been seen hovering in the sky in the border area.

Defense experts believe that like in Arunachal and Ladakh, here too the Indian Army is capable of giving a befitting reply to China for its arrogance. It is not that the potential threat assessment in the border areas of Uttarakhand would not have been done.

The border villages of Uttarakhand are also standing as a shield on the China border.

Over the years, a lot of attention has been paid to infrastructure development in border areas. The access of the Indian Army to the China border adjoining Uttarakhand has become easier.

At the same time, in the past, Indian and American forces also conducted a two-week-long exercise in Auli. Although this maneuver is part of the bilateral military strategy, but it is also a message to the dragon. That’s why China also shouted about this. The border villages of Uttarakhand are also standing as a shield on the China border.

The border adjacent to Chamoli’s Niti Valley is sensitive

There is a 345 km long border in Uttarakhand between India and China. Among these, the border adjacent to Chamoli’s Niti Valley is the most sensitive. China has been repeatedly violating the border in Barahoti located here. Lieutenant General Mohan Chandra Bhandari (Seni) says that everyone knows the expansionist policy of China.

Under this policy, he repeatedly does this kind of act on LAC. However, war-like conditions will not prevail. He says that the army and ITBP are fully prepared in Uttarakhand. It is capable of responding to any action of China.

We are ready to deal with any possible threat

Lieutenant General Gambhir Singh Negi (Seni) says that the potential threat must have been assessed in the border areas. He said that it was unfortunate that the marginal areas were neglected for a long time. But now there has been a big change in the thinking of the central leadership regarding the development of border areas.

Much attention is being paid to infrastructural development. The manner in which the joint exercise was conducted in Auli shows that we are prepared to deal with any possible threat. This is a reflection of our strategy.

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