<?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 } ?>
IIT-India-placements-2021
Trending news National

IIT Placements 2021: All the old records of placements broken in IITs!

New Delhi. Indian Institutes of Technology (IITs) of India’s prestigious technical educational institutions have rained job offers worth crores of rupees on students in just 6 days of the placement drive (IIT Placements). If the officials of the institutes are to be believed, then this year has been very special in terms of getting jobs for the students. From the total offers of jobs to the package of crores, the IITs of the country have presented record figures. Apart from this, a significant increase was also registered in the number of International Offers in IITs to the students after suffering the hit of covid-19 last year.

According to the Economic Times report, 307 companies made 1142 offers in IIT BHU till Monday afternoon. Whereas, in IIT Kanpur till Saturday, this figure was at 940. These include 47 international offers. IIT Roorkee received more than 1000 offers including 32 international ones. The number of offers has crossed 1300 in IIT Kharagpur and 625 in IIT Guwahati. In IIT Madras, students got 1208 chances including 231 pre-placement offers.

In Kanpur, Roorkee, Kharagpur and Varanasi IITs, the number of packages of more than one crore has crossed 80. At the same time, this time the students got more international opportunities than last year. This year there were more than 220 international offers from IITs Kanpur, Madras, Roorkee, Guwahati and BHU. The number of international offers at IIT Madras jumped by 181 per cent to 45. Last year this figure was 16. International offers increased from 6 to 28 at IIT Guwahati with a rise of 366 per cent. At the same time, in IIT Kanpur, this number increased from 19 last year to 47. The special thing is that IIT BHU received 35 international offers this year as compared to zero last year.

More than 75 per cent students who have registered for campus placements in IIT BHU have already got jobs. IIT Kanpur Director Abhay Karandikar said, “It is one of the most wonderful years in terms of placements.” Talking to ET, he said, “In the last few years, the institute has received one of the highest number of offers in both domestic and international affairs. There is a lot of demand for tech talent in the sectors. Be it agriculture, retail, infrastructure… every sector is using modern-day technology in some process. This demand has increased due to the pandemic.

Abhishek Kumar, head of the Center for Career Development at IIT Guwahati, said, “Compared to the last three years, we have received the highest number of international and domestic offers this year.” “Software companies have seen growth over the years with the addition of hiring to startups,” he said.

According to ET, after about 6 years, this time a package of more than Rs 2 crore has made a comeback in campus placements. The biggest international offer has crossed the Rs 2 crore package mark. At the same time, the package went up to Rs 1.8 crore in the domestic package.

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