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

ED arrests man in Pune co-op bank fraud case worth Rs 430 Cr

[ad_1]

By Divyesh Singh: The Enforcement Directorate (ED) arrested one Sagar Maruti Suryawanshi, in the Pune-based Seva Vikas Co-operative Bank fraud case. Sagar and his relatives are accused of defrauding the bank of Rs Rs 60.67 crore in 10 NPA (non-performing assets) loan accounts.

He was booked under the Prevention of Money Laundering Act (PMLA) act.

The co-op bank suffered a loss of nearly Rs 430 crore, as its Directors and Chairman are responsible for giving out fraudulent loans which later turned into NPA (Non Performing Assets).

Also Read: Enforcement Directorate searches in Ahmedabad related to illegal trade, crypto exchange

WHAT IS THE BANK FRAUD CASE?

An FIR was filed against a local police station in Pune, against Vinay Aranha and others in a bank load fraud case. Subsequently, an audit of the bank, found gross fraud and misappropriation of Rs 429.6 Crore across 124 NPA Loan accounts. Based on this audit report, additional FIRs were registered against the loan beneficiaries and the bank management, including its ex-Chairman Amar Mulchandani.

In March, the ED had arrested two of its staffers working on contract at its Mumbai office and a “close associate” of Mulchandani for allegedly sharing “sensitive” information of this investigation in exchange for a bribe.

Also Read: ED issues notices to 2 senior executives of Xiaomi for FEMA violations of Rs 5,551 crore

RBI ACTION ON THE BANK

According to the ED, more than 92 per cent of the loan accounts had turned into NPAs, which ultimately led to the collapse of the bank and the RBI later cancelling its license.

INVESTIGATION FINDINGS

An ED investigation has established that Amar Mulchandani treated public deposits in the bank like his “personal fiefdom” and violated all prudent banking norms to illegally sanction loans to his favored borrowers in an arbitrary manner.

He took bribes with 20 per cent commission of the sanctioned loan amounts. He made his family members Directors in the bank with a clear motive to have brute majority on the Board of Directors to sanction loans as per his whims and fancies.

Assets worth Rs 122.35 crore have been provisionally attached in this case till now, the agency said.

Also Read: Chhattisgarh: ED nabs steel firm staffer wanted in liquor scam during his mother’s funeral

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