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

Coming together of Indian talent and U.S. technology guarantees brighter future: PM Modi at meet of top CEOs

[ad_1]

Prime Minister Narendra Modi and U.S. President Joe Biden during a meeting with American and Indian Business leaders, at the White House, in Washington, D.C. on June 23, 2023.

Prime Minister Narendra Modi and U.S. President Joe Biden during a meeting with American and Indian Business leaders, at the White House, in Washington, D.C. on June 23, 2023.
| Photo Credit: ANI

Prime Minister Narendra Modi said on Friday that the coming together of Indian talent and U.S.’s technological advancement guarantees a bright future as he met business honchos of the two countries at the White House.

“This morning (meeting) is only among a few friends but has brought with it the guarantee of a bright future,” PM Modi said in his remarks at the India-U.S. Hi-Tech Handshake Event as President Joe Biden nodded.

This is a great opportunity to take along President Biden’s vision and capabilities and India’s aspirations and possibilities, PM Modi said, thanking the U.S. leader for his presence at the meeting.

He referred to the development as “honhaar, shandaar, dhardaar” in Hindi and said it will pave the way for a new future.

The meeting came at a time the two countries look to deepen their ties in the high-tech sector.

Prime Minister Modi said the coming together of Indian talent and U.S.’ technological advancement guarantees a bright future.

He said the business honchos have come from every sector – from agriculture to space – with some of them representing well-established forms while some others leading start-ups.

Microsoft CEO Satya Nadella, Apple CEO Tim Cook, Google CEO Sundar Pichai, OpenAI CEO Sam Altman, AMD CEO Lisa Su, NASA astronaut Sunita Williams were among the American representatives who participated in the meeting.

Also read: Worldview with Suhasini Haidar | PM Modi in US: A major leap forward for India-US ties?

Reliance Industries Chairman and Managing Director Mukesh Ambani, Mahindra Group Chairman Anand Mahindra, Zerodha and True Beacon co-founder Nikhil Kamath and 3rdiTech co-founder Vrinda Kapoor joined the meeting as part of the India business delegation.

On his part, President Biden said their partnership will ensure a free, more secure and prosperous future for our children.

“Our cooperation matters, not just for our people but quite frankly to the whole world, as our partnership is about more than the next breakthrough or the next deal as big as they may be,” President Biden said.

It is about tackling climate change, about exploring the universe, about lifting people out of poverty, preventing pandemics and giving our citizens real opportunity, the President added.

PM Modi’s four-day state visit to the U.S. have been dubbed historic and path-breaking by Indian officials and is being seen as a breakthrough in India’s quest to get the U.S. to agree to critical cooperation in cutting-edge technologies including their transfer and joint research.



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