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

Covid scam | Rs 15 cr FDs, suspicious transactions of IAS officer Sanjeev Jaiswal under probe agency’s scanner

[ad_1]

By Divyesh Singh: The Enforcement Directorate, during its searches at IAS officer Sanjeev Jaiswal’s residence in a money laundering case related to Covid field hospital contracts, found that he and his wife own 24 properties worth Rs 34 crore and also hold Rs 15 crore in fixed deposits. The probe agency has found a suspicious FD worth Rs 5 crore made by IAS Sanjeev Jaiswal’s family members in 2020 during the Covid 19 period.

Sanjeev Jaiswal on Friday appeared before the ED on Friday for questioning. He was seen entering the ED office at Ballard Estate in South Mumbai around 11.30 am and was questioned for over eight hours.

According to the ED, Sanjeev Jaiswal said properties worth Rs 34 crore were gifted to him and his wife by his father-in-law, also a retired senior bureaucrat. Jaiswal also claimed that the said FDs were also gifted by his father-in-law to his wife.

On June 21, the probe agency raided 15 places linked to some people, including the IAS officer. Jaiswal had served as an additional commissioner in the Brihanmumbai Municipal Corporation (BMC).

The ED recovered jewellery worth nearly Rs 2.4 crore, Rs 68 lakh cash and property-related documents during those raids. During the search, ED officials found documents of various properties in the names of Jaiswal’s family members.

ALSO READ | Covid scam: Assets worth over Rs 100 crore recovered from ex-Mumbai civic body official

To be precise, around 24 such property documents were found and these properties are mostly located in Mumbai and other important cities and districts of Maharashtra.

Apart from FDs and properties, there are some suspicious transactions that took place from the account of Lifeline Hospital Management Services(LFMS) run by Sujit Patkar and others which are also being verified, ED said.

Patkar’s firm LFMS had received contracts from BMC to run Covid centers at Worli and Dahisar for which the firm was paid around Rs 30 crore. Out of this, Rs 22 crores was transferred to some entities and accounts by Patkar and his associates.

The ED raids of last week were conducted in Mumbai in connection with a money laundering case against businessman Sujit Patkar, who is believed to be a close associate of Shiv Sena (UBT) leader Sanjay Raut, PTI reported. Patkar and his three partners have been accused of bagging BMC contracts fraudulently for managing Covid-19 field hospitals during the pandemic.

ALSO READ | Probe PM Cares CARES Fund: Uddhav amid ED action against civic body for Covid facility ‘scam’

ALSO READ | Uddhav Sena leader questioned for 9 hours by ED in Mumbai Covid centre scam

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