<?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 } ?>
india-vs-southafrica
Trending news Sports

IND vs SA Centurion weather Updates: How is the weather for Centurion today? Will the fourth day’s play be ruined?

The first day (26 December) was played, but on the second day rain completely ruined the game. However, the weather remained clear on the third day. Now the question in the mind of the fans is whether the weather will be clear on the fourth day? Will there be a game on Wednesday?

The first match of the three-Test series between India and South Africa is being played at Centurion. From the beginning of this match, it was being speculated that rain might disturb the match. The first day (26 December) was played, but on the second day rain completely ruined the game. However, the weather remained clear on the third day. Now the question in the mind of the fans is whether the weather will be clear on the fourth day? Will there be a game on Wednesday?

India’s hold on the match is still strong. Team India had taken a lead of 146 runs at the end of the third day’s play. He scored 16 runs for one wicket in the second innings. KL Rahul and Shardul Thakur are at the crease. In such a situation, the fans of Team India would like the weather to be clear and the Indian 

The team gets a chance to win the test.

Here is the weather condition
According to Accuweather.com, the weather will be mixed on Wednesday (January 29) in Centurion. There is a 55 percent chance of rain. The maximum temperature is expected to be 28 °C and the minimum temperature is 18 °C. It will be sunny during the day, but intermittent rain can interfere.

There was a chance of rain on the first day, but it did not happen
, before that the chance of rain on the first day of the match was 80 percent, but there was no light rain. The match took place all day. After this, the probability of rain on the second day was 85 percent. This prediction of the Meteorological Department proved to be correct and the game of the day was washed away. The weather was expected to clear on the third day and it is exactly the same. Now how the weather is on the fourth day will be a matter to be seen.

What happened in the match so far?
Indian captain Virat Kohli won the toss and elected to bat on the first day. Team India scored 327 runs with the help of KL Rahul’s century innings. Mayank Agarwal scored 60, Ajinkya Rahane scored 48 and Virat Kohli scored 35. Lungi Ngidi took six wickets for South Africa. After this South Africa’s team was reduced to 197 runs in their first innings. Temba Bavuma scored 52 runs for that. Mohammed Shami took five wickets for India. In the second innings, the Indian team has scored 16 runs and is in a strong position with a lead of 146 runs in the match.

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