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

New Parliament inauguration: Congress vs BJP over Sengol sceptre; know controversy over ‘twisted’ history

[ad_1]

The New Parliament building is set to be inaugurated by Prime Minister Narendra Modi tomorrow, May 28, and one of the most historic and unique parts of the ceremony is the golden Sengol sceptre, set to be placed near the seat of the Speaker.

PM Modi will be placing the historic Sengol near the Speaker’s seat in the Parliament tomorrow, Union Home Minister Amit Shah revealed during a press briefing. Shah also talked about the historic significance of the Sengol, and how it became a symbol of Independent India.

According to the history of the Sengol, it was handed over to India’s first Prime Minister Jawaharlal Nehru by British Viceroy Lord Mountbatten to signify the handing over of the power from British to India after the Independence struggle.

However, Congress has pointed out several discrepancies in the historic significance of the Sengol, saying that the ruling BJP has “twisted” the history of the golden sceptre. Here is all you need to know about the controversy over the Sengol.

Congress vs BJP over Sengol in New Parliament building

According to the history of the Sengol sceptre in Independent India, the BJP said that it was a symbol of the transfer of power from British to India, and the idea of making the sceptre was put forward by freedom fighter C Rajagopalchari and Jawaharlal Nehru.

However, the Congress party said that there is no evidence of Jawaharlal Nehru, Lord Mountbatten or C Rajagopalchari ever calling the Sengol a “symbol of Independence”, terming the claims made by the BJP as “completely bogus”.

 

 

Congress leader Jairam Ramesh took to Twitter and said, “All claims to this effect are plain and simple — BOGUS. Wholly and completely manufactured in the minds of a few and dispersed into WhatsApp, and now to the drum-beaters in the media. Two of the finest Rajaji scholars with impeccable credentials have expressed surprise.”

Meanwhile, the BJP has stuck to the Sengol’s historic background, with many seers and priests making their way to Delhi from Tamil Nadu to the ceremony of the installation of the sceptre in the New Parliament building.

READ | What is historic ‘Sengol’ sceptre, set to be placed inside new Parliament building next to Speaker?



[ad_2]

Source link

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