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

EOW books Goa real estate company, three directors in Rs 14.9 cr fraud case

[ad_1]

THE ECONOMIC Offenses Wing of Mumbai Police has registered a case of cheating against a Goa-based real estate company and its three directors for allegedly duping a 39-year-old man from Goa to the tune of Rs 14.9 crore.

The accused persons allegedly defrauded the complainant by accepting money from him on the pretext of buying a piece of land in Goa. But the complainant neither got possession of any land nor did he get his money back. Since the said offence was committed from a Tardeo office, the EOW has registered the complaint and is further investigating the matter.

According to the police, Premchand Gawas, who hails from Navelim, Bicholim, Goa, in his complaint to the police has alleged that between January 2008 and February 2023, he had paid Rs 14.9 crore to Reis Magos Estate Private Limited, and its three directors namely Suresh Parulekar, Prasad Parulekar and Manda Suresh Parulekar, for the purpose of buying a piece of land in Goa.

The accused, all from Panaji, Goa, for years made Gawas believe that they have utilised the money for buying a piece of land for him.

However, later Gawas found out that the accused persons in connivance with the sub-registrar made sure that the sale agreement of the land did not get registered. The accused also allegedly did some modification in the power of attorney that was created for the smooth purchase of the land, the police complaint said.

Gawas alleged in the FIR that the accused persons allegedly breached his trust and misused his money for unlawful self-gain. Gawas never got possession of the said land.

After pursuing the matter with the accused persons for a long time, he eventually approached the police. Since the said offence was allegedly committed from an office in Bayside mall in Tardeo, Gawas approached the EOW of Mumbai Police.

EOW officials first carried out a preliminary inquiry, and after ascertaining that a cognisable offence is committed, filed an FIR on Thursday. The case was first registered with the Tardeo police station and later got transferred to the EOW, said an officer from the Tardeo police station.

The police have registered a case under sections 409 (criminal breach of trust by public servant, or banker, or merchant or agent), 420 (cheating) and 34 (common intention) of the Indian Penal Code against Reis Magos Estate Private Limited, and its three directors — Suresh Parulekar, Prasad Parulekar and Manda Suresh Parulekar.

The complainant has submitted details of the money transactions carried out for the purpose of buying land.

EOW officers are in process of identifying witnesses and recording their statement.



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