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

PM Modi’s private dinner with Bidens, big US Congress address later

[ad_1]

By India Today News Desk: Prime Minister Narendra Modi on Wednesday started the second leg of his US visit by greeting Indian community members upon arrival in Washington and visiting the National Science Foundation with First Lady of the US Jill Biden. Later, the prime minister attended a private dinner hosted by the Bidens.

PM Modi reached Washington DC on Wednesday where he was greeted with a ceremonial welcome and guard of honour at the Andrews Air Base amid incessant rain.

The national anthems of both countries were played.

“The warmth of the Indian community and the blessings of Indra Devta made the arrival even more special,” the prime minister said in a tweet.

Here’s a recap of PM Modi’s day in Washington

  • PM Modi’s Day 2 began with a historic event at the UN Headquarters in New York to commemorate the International Day of Yoga, attended by UN officials, diplomats and prominent personalities. From New York, the prime minister left for Washington for the second leg of his US visit.

  • Upon arrival in Washington DC, PM Modi was welcomed by Indian community members at Freedom Plaza. Some of the community members staged cultural programmes including ‘Garba’ and other folk dances outside the hotel where the prime minister will stay.

  • Later, PM Modi visited the National Science Foundation in Virginia with Jill Biden by his side. In his address, the prime minister said India’s aim is to turn this decade into a tech decade or ‘techade’. Jill Biden said the Indo-US relationship is a celebration of families and friendships that span the globe.

  • Ahead of the State Dinner for PM Modi, dishes that will be served were put on display. The menu, which Jill Biden described as “stunning”, includes plant-based courses of millets and stuffed mushrooms.

  • Later, Prime Minister Narendra Modi was received by US President Joe Biden and Jill Biden at the White House for a private dinner. The White House said that as the official gift, the president and the first lady presented PM Modi with a handmade, antique American book galley from the early 20th Century.

    They also gifted Modi a vintage American camera, accompanied by an archival facsimile print of George Eastman’s Patent of the first Kodak camera, and a hardcover book of American wildlife photography. The Bidens also arranged a garba performance for the prime minister.

During the second leg of his US visit, PM Modi will hold bilateral talks with Joe Biden and address a joint session of the US Congress. He will also attend the State Dinner along with other dignitaries.

The dinner will have an Indian touch as lotus flowers will be incorporated throughout, along with saffron-hued floral arrangements that differ from table to table.



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