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

Pbks Vs Mi Live Score:मुंबई इंडियंस ने पंजाब किंग्स के खिलाफ गेंदबाजी चुनी, शिखर धवन और प्रभसिमरन क्रीज पर – Pbks Vs Mi Live Cricket Score Punjab Kings Vs Mumbai Indians Ipl 2023 46th Match At Pca Stadium

[ad_1]

07:10 PM, 03-May-2023

PBKS vs MI Live Score: दोनों टीमों की प्लेइंग-11

मुंबई इंडियंस: रोहित शर्मा (कप्तान), ईशान किशन (विकेटकीपर), कैमरन ग्रीन, तिलक वर्मा, टिम डेविड, नेहल वढेरा, जोफ्रा आर्चर, पीयूष चावला, कुमार कार्तिकेय, आकाश मधवाल, अरशद खान।

पंजाब किंग्स: प्रभसिमरन सिंह, शिखर धवन (कप्तान), मैथ्यू शॉर्ट, लियाम लिविंगस्टोन, जितेश शर्मा (विकेटकीपर), सैम कुरेन, शाहरुख खान, हरप्रीत बराड़, ऋषि धवन, राहुल चाहर, अर्शदीप सिंह।

07:03 PM, 03-May-2023

PBKS vs MI Live Score: पंजाब की टीम पहले बल्लेबाजी करेगी

मुंबई इंडियंस के कप्तान रोहित शर्मा ने पंजाब किंग्स के खिलाफ टॉस जीतकर पहले गेंदबाजी का फैसला किया है। रोहित आईपीएल में मुंबई इंडियंस के लिए यह 200वां मैच है। मुंबई की टीम में एक बदलाव हुआ है। ऑस्ट्रेलिया के तेज गेंदबाज रिले मेरेडिथ चोटिल हो गए हैं। उनके स्थान पर आकाश को मौका मिला है। पंजाब की टीम में मैथ्यू शॉर्ट और नाथन एलिस की वापसी हुई है। कगिसो रबाडा को बाहर किया गया है।

06:38 PM, 03-May-2023

PBKS vs MI Live Score: मुंबई इंडियंस ने पंजाब किंग्स के खिलाफ गेंदबाजी चुनी, शिखर धवन और प्रभसिमरन क्रीज पर

नमस्कार, अमर उजाला के लाइव ब्लॉग में आपका स्वागत है। आईपीएल के 46वें मैच में मुंबई इंडियंस के सामने पंजाब किंग्स की चुनौती है। दोनों टीमों के बीच यह मुकाबला मोहाली के पंजाब क्रिकेट एसोसिएशन स्टेडियम में खेला जाएगा। पंजाब की टीम नौ मैच में पांच जीत के साथ छठे स्थान पर है। दूसरी ओर, मुंबई की टीम सातवें पायदान पर है। उसके आठ मैच में चार जीत के साथ आठ अंक हैं।

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