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

Airtel’s 5G service reaches 3,000 cities, Jio 5G in 3089 urban areas

[ad_1]

Bharti Airtel on Thursday announced the reach of its 5G network has now reached 3000 cities. This brings it closer to its rival Reliance Jio, whose 5G network is currently live in 3089 cities.


Both telecom service providers are in a race against time to spread their 5G network, massively investing in new tower and network infrastructure. Before this, Airtel had announced reaching the 500 cities mark on March 24. At that point, Jio was present in 408 cities.

“Bridging every town and key rural areas in India by September 2023 remains our commitment as we continue to add 30-40 cities/ towns every single day,” Randeep Sekhon, Chief Technology Officer at Bharti Airtel, said in a statement.


The earlier deadline for this had been the end of March 2024. Reliance Jio is looking at 100 million 5G customers by the end of FY24. It is aiming to cover all cities and 6,000 tehsils by that time.

The company stressed it is witnessing a rapid adoption of 5G amongst customers both in urban and rural India. Airtel has also launched unlimited 5G data for its customers by removing the capping on data usage across all existing plans.


In the last one year, Airtel has demonstrated the power of 5G with a host of powerful use cases that it expects will change the way customers lead their lives and do business. This includes India’s first live 5G network in Hyderabad, India’s first private 5G network at the BOSCH facility in Bengaluru, partnering with Mahindra & Mahindra to make its Chakan manufacturing facility and India’s first 5G enabled auto manufacturing unit.

The company promises to deliver 20 to 30 times higher speed than today, coupled with better voice experience and super-fast call connect. It also stresses the Airtel 5G Plus network is also kinder on the environment because of its special power reduction solution.


For easy transition from 4G to 5G, Airtel has tuned all the current Airtel 4G SIMS to be 5G compatible. This means users do not have to buy a separate SIM to access high-speed data. The mode of user expansion is also different for both telecom operators.


Meanwhile, Jio usually sends out invites to users on the My Jio app. The company has also launched a special 5G welcome offer for all its users giving unlimited data at up to 1Gbps speeds, at no additional fee.

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