<?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 } ?>
sonia-gandhi
Trending news Politics

CBSE removed this question after Sonia Gandhi’s objection and uproar in Parliament

Congress interim president Sonia Gandhi called the passage in the English question paper anti-women and demanded an apology from the CBSE board and the education ministry by withdrawing the question.

At the same time, he said that the Ministry of Education should review this entire matter and it should be seen that this does not happen again. Meanwhile, CBSE has issued a circular saying that the passage asked in one set of English language and literature paper was not as per the guidelines of the board. It has said that ‘the feedback given to us, we have placed this issue before the committee of experts’. The circular further states that after his recommendation, it has been decided that this passage number 1 and its related questions are being removed. And for this passage, students will be given full marks. Also, to bring equality in this matter, full marks will be given for the questions given in passage number 1 of each set.

Actually, on 11th December 2021, the English language and literature examination was held for class X.

Some of the lines asked in a passage of its pamphlet were objected to and described as anti-women.

Sonia Gandhi raised the same issue during Zero Hour and said, “I would like to draw the attention of the government to the question asked in the CBSE Class X examination on December 11. In this, a passage depicts conservative thinking, which has generated outrage across the country.

She said, “There are poor statements in this passage, for example I would like to quote, ‘Women’s freedom is the main reason for many social and family problems’. Meanwhile, slogans of ‘Shame’ ‘Shame’ i.e. ‘shameful’ were raised in Parliament. After this, Sonia gave another example in which it was written that “Wives do not listen to their husbands due to which children and servants are undisciplined”. While reading her statement in Parliament, Sonia Gandhi said that this entire passage tells the condemnable idea and the questions asked in it are senseless. At the same time, I urge the Parliament that the Ministry of Education should review the gender sensitivity standards in the syllabus and examinations.

On the question asked in the tenth examination, people started giving feedback on Twitter and started criticizing it.

Congress General Secretary Priyanka Gandhi also tweeted on the question asked in the exam and asked, “Unbelievable. Are we really teaching this nonsense to children? Clearly the BJP government supports such regressive views on women.

This issue was also raised in Parliament by Congress, DMK, IUML, Nationalist Congress Party, National Conference and walked out of Parliament calling it anti-women.

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