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

‘Easy To Throw Political Opponents In Jail But…’: Manish Sisodia Pens Open Letter From Prison

[ad_1]

Former Delhi Deputy Chief Minister Manish Sisodia, who has been in judicial custody since February 26, following his arrest by the Central Bureau of Investigation (CBI) on alleged corruption charges related to the Delhi excise policy, penned an open letter on Thursday about the “Politics of Education” vs “Politics of Jail”. Sisodia, who is also a senior leader of the Aam Aadmi Party, alleged that the BJP has a problem with politics of education as it “builds nations, not leaders”.

In the letter, Sisodia wrote that while it is much easier to throw political opponents in jail, giving quality education to children is a difficult task. He argued that the future belongs to the politics of education, and although it may not be an easy recipe for political success, it is essential for the development of nations.

Delhi CM Arvind Kejriwal shared a copy of the letter on Twitter and said: “BJP does politics of putting people in jail, we are doing politics of educating children. It is easy to send to jail, very difficult to teach children. The nation will progress by education, not by sending to jail.”

Earlier, Kejriwal said that Centre is trying to keep his former deputy Manish Sisodia in jail at all costs. He said that first, Sisodia was arrested by the CBI, which found no evidence against him. So now, the Enforcement Directorate has placed him under arrest.

The ED placed Manish Sisodia under arrest in the Delhi liquor policy case earlier on Thursday. The ED, which is investigating the money laundering angle in the liquor policy case, questioned Sisodia for about 45 minutes in Tihar Jail before placing him under arrest. The development came a day ahead of his bail hearing in the liquor policy case filed by CBI.

Sisodia was arrested by the CBI on February 26 for suspected corruption relating to the creation and implementation of the Delhi liquor or excise policy for 2021-22, which was later cancelled. He is currently in judicial custody until March 20. However, Sisodia has filed a bail application which is scheduled to be heard on March 10.

During his custody, the CBI questioned Sisodia alongside his former secretary C Arvind and former Excise Commissioner Arava Gopi Krishna, with regards to the suspected manipulation of the excise policy.

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