<?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 } ?>
mg-mini-car
Technology Trending news

The upcoming MG mini car gives 300 km range in a single charge

MG Motor India will launch its upcoming micro-electric car in India in the first half of 2023. Apart from this, the new MG electric car will also be showcased at the Auto Expo in January 2023.

GM’s electric mobility arm Wuling announced the Air EV micro-electric car in Indonesia in June this year, which has now been launched in the country. Wuling-authorized brand MG Motor is reportedly planning to rebadge the car and launch it in India. A micro-electric car from MG has also been spotted during road testing in Gujarat. It is believed that this is the Wuling Air EV itself. Media reports claim that this car will be launched in India in 2023. According

to Autocar India, MG Motor India will launch its upcoming micro-electric car in India in the first half of 2023. Apart from this, it is also speculated that the new MG electric car will also be shown at the Auto Expo in January 2023. Since MG India has already been selling the Wuling Almaz in India as MG Hector, it is believed that the Wuling Air EV launched in Indonesia will be brought to India with the MG badge.

If it does, then we now know a lot about the design and specifications of the upcoming MG micro-electric car. As can be seen in the official images of the Wuling Air EV, the interiors of the smaller MG EV coming to India could feature a dual-tone set-up. The highlight of the interior is the twin 10.25-inch screen. The horizontally fitted AC vents are placed just below the screen, with three round knobs for HVAC controls.

A steering wheel is a two-spoke unit with multiple controls. These include controls for audio and navigation, as well as voice command buttons for infotainment. It also gets a center console between the driver and passenger seats at the front, with a rotating gear selector knob. Apart from this, controls have also been given for features like electric parking brake and auto wheel holding. In addition, it also includes power window switches.

In Indonesia, this car will be available in two range options. The standard range version of the Wuling Air EV claims to offer a range of 200 km, while the extended range model claims a range of 300 km. If the car comes with the same option in India, it will rival the Tata X-Press T EV and the Tata Tigor EV, which have a range of 165 km and 306 km, respectively.

Autocar India, citing its sources, has informed that the Wooling Air EV for the international markets comes with a single motor set-up, which is equipped with two power options – 30kW and 50kW, and will be powered by a Lithium-Iron-Phosphate battery. get the pack. The publication claims that the EV will be brought to India with a locally sourced battery pack from Tata AutoComp.

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