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

Mahesh Bhatt Is Proud Of Daughter Alia Bhatt Hollywood Debut Film Heart Of Stone Reveals The Reason Behind The Actress Choosing Path Gal Gadot Jamie Dornan

[ad_1]

Mahesh Bhatt On Alia Bhatt First Hollywood Film: अपनी बेहतरीन फिल्मों के लिए पहचाने जाने वाले महेश भट्ट अपनी बेटी आलिया भट्ट के साथ स्पेशल बॉन्ड शेयर करते हैं. वो अक्सर बेटियों के साथ टाइम स्पेंड करते नजर आते हैं.  हाल ही में  आलिया भट्ट् की हॉलीवुड डेब्यू फिल्म ‘हार्ट ऑफ स्टोन’ का ट्रेलर रिलीज हुआ है. जिसमें वे  गैल गैलोट और जेमी डोर्नन के साथ लीड रोल प्ले करती नजर आ रही हैं. वहीं आलिया भट्ट के हॉलीवुड डेब्यू पर पापा महेश भट्ट का रिएक्शन  भी आया है. उन्होंने एक्ट्रेस के हॉलीवुड का रास्ता अपनाने का कारण भी बताया.

महेश भट्ट् को हुआ बेटी पर गर्व
महेश भट्ट् ने ई-टाइम्स को दिए इंटरव्यू में बेटी आलिया के हॉलीवुड डेब्यू के बारे में कहा, ‘जब मैं उसे गैल गैडोट और जेमी डोर्नन जैसे महान अंतरराष्ट्रीय एक्टर्स के साथ खड़ा देखता हूं तो मेरा दिल गर्व से भर जाता है.’ महेश भट्ट ने आगे कहा, ‘इस विचार से प्रभावित हुए बिना कि ये हॉलीवुड है, वहां खड़े रहना, जब अंतर्राष्ट्रीय प्रतिभा की बात आती है तो आज के युवा खुद को किसी भी तरह से तुच्छ या कमतर महसूस नहीं करते हैं.’

आलिया भट्ट ने क्यों चुना हॉलीवुड का रास्ता?
महेश भट्ट ने आलिया से जब हॉलीवुड जाने की वजह पूछी और कहा बॉलीवुड क्यों नहीं और हॉलीवुड क्यों? तो गंगुबाई एक्ट्रेस ने इसकी वजह पैसे बताई. महेश भट्ट ने कहा कि आलिया का जवाब ‘पैसा’ था. महेश भट्ट ने खुलासा किया कि आलिया भट्ट ने पूरे कॉन्फिडेंस से बताया कि ‘पैसा’ एक ऐसी चीज है जो हॉलीवुड के पास है. आलिया ने ये भी बताया कि उनके पास काम करने का एक तरीका है और वो बहुत पेशेवर हैं और उनके पास बहुत पैसे भी हैं, वरना हमारे पास भी किसी चीज की कमी नहीं है. अपनी बेटी से ये जवाब सुनकर महेश भट्ट् बोले, ”मुझे लगता है कि आत्मविश्वास देश के लिए बहुत जरूरी है.” 

वहीं आलिया की अपकमिंग हॉलीवुड फिल्म ‘हार्ट ऑफ स्टोन’ की बात करें तो एक्ट्रेस की इस फिल्म का ट्रेलर 18 जून को नेटफ्लिक्स के टुडुम फेस्टिवल में रिलीज किया गया है. इस फिल्म में आलिया नेगेटिव रोल प्ले करती नजर आ रही हैं तो वहीं जेमी डोर्नन और गैल गैलोट एक जासूस का रोल प्ले कर रहे हैं.

यह भी पढ़ें: ‘इंसान की गलतियों को नहीं उनकी भावनाओं को समझो’, Adipurush विवाद पर अब कृति सेनन की मां ने तोड़ी चुप्पी

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