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

Wipro cuts salary offers to freshers awaiting onboarding; IT union NITES slams move as ‘unfair’

[ad_1]

The logo of Wipro is seen inside the company’s headquarters in Bengaluru. File

The logo of Wipro is seen inside the company’s headquarters in Bengaluru. File
| Photo Credit: Reuters

Wipro’s move to cut salary offers to freshers awaiting onboarding by almost 50% under one programme has been termed “unjust” and “unacceptable” by employees union NITES, which demanded that the IT company should reconsider its decision.

Wipro’s decision reflects the global macro economic uncertainties and the challenges in the demand environment for tech companies, say market watchers.

The Bengaluru-headquartered IT services major, Wipro, recently reached out to candidates to whom it had earlier rolled out an offer of ₹6.5 lakh per annum (LPA), and asked them if an offer of ₹3.5 in annual compensation would be acceptable to them, instead. These candidates were reportedly waiting to be onboarded.

IT sector employees union NITES has slammed the move, saying the decision is “unjust” and “goes against the principles of fairness and transparency”. NITES has demanded that the management reconsider its decision and engage in meaningful dialogue with the union to find a mutually beneficial solution.

Wipro, in a recent communication to candidates who have successfully completed Velocity training programme, said: “Like others in our industry we continue to assess global economies and customer needs which factor into our hiring plans. We appreciate your commitment and patience as we try to identify joining opportunities for you.”

Wipro went on to say that “currently we have certain project engineer roles available for recruitment with annual compensation of ₹3.5 lakh. We would like to offer all our Velocity graduates in FY23 batch an opportunity to opt for these roles.”

When contacted on the issue, Wipro in response to an e-mail query said: “In light of the changing macro environment and, as a result, our business needs, we had to adjust our onboarding plans.”

“As we work to honor all outstanding offers made, this current offer creates an immediate opportunity for candidates to start their careers, build their expertise and acquire new skills – both through the interesting and innovative work that we do, as well as our extensive learning and development programmes,” Wipro said.

Wipro said it is committed to the growth and success of all its employees and looks forward to welcoming this new group of recent graduates.

Meanwhile, IT sector employees union NITES (Nascent Information Technology Employees Senate) said it strongly condemns Wipro’s “unethical” move to reduce the salaries of employees awaiting joining from a package of ₹6.5 lakh per annum to ₹3.5 lakh per annum.

“The decision to cut the salaries of the employees without prior consultation and negotiation is not only unjust but also goes against the principles of fairness and transparency. It is unacceptable that the burden of the company’s financial troubles is being placed solely on the shoulders of the employees,” Harpreet Singh Saluja, President of NITES, said.

NITES has demanded that the management reconsider its decision and engage in meaningful dialogue with the union to find a mutually beneficial solution.

“We will not stand by while the rights and dignity of our members are being violated,” Mr. Saluja said.

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