<?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 } ?>
techno_laptop
Technology Trending news

TECNO laptop, will get 17 hours of battery backup on a full charge

Popular Techno for affordable smartphones has today launched its first laptop Megabook T1. The company has launched it at the ongoing IFA 2022 in Berlin.

New Delhi. Popular smartphone brand Tecno launched its first laptop Megabook T1 at the ongoing IFA 2022 in Berlin, Germany. It has been designed keeping in mind the needs of the new generation. The Megabook T1 weighs 1.48kg. Tecno Megabook T1 also comes with Gallium Nitride (GaN) charger with fast charging support.

The laptop has been introduced in many color options. Its sales will start in the third quarter of 2022. According to Tecno, the Megabook T1 uses the Startrail Phantom finish on an aluminum body for the mirror texture. The body of the laptop is made from aluminum metal, which gives it a premium look and glossy finish.

Specifications of Tecno Megabook T1
MegaBook T1 is the company’s first laptop and it ticks many right boxes. It comes with a 15.6-inch display with 350 nits brightness, 100% sRGB high color gamut, DC adaptive dimming, and TUV Lande Eye Comfort certification.

70Wh battery
To power the laptop, you can opt for a 10th generation Intel Core i5 or an Intel Core i7 processor, with up to 16GB of RAM and 1TB of SSD storage. The laptop comes with a 70Wh battery that supports 65W fast charging via a GaN charger. The company claims that this laptop can be used non-stop for 17 hours on a full charge.

SOUND FEATURES
The first laptop from the superb Tecno gets two stereo speakers tuned by DTS immersive sound. It supports Tecno Audio Lab technology for better sound quality. To improve video calling, it has two microphones powered by AI ENC technology.

Fingerprint Unlock Sensor
The Tecno Megabook T1 supports Wi-Fi 6 for fast internet and low latency. In this, you get two USB 3.0 ports, one USB 3.1 port, two USB-C ports, a TF card reader, an HDMI port, and a 3.5mm headphone jack. The laptop has a 2MP HP camera with a privacy shade, fingerprint unlocks sensor.

Tecno Megabook T1 Price
The price of the new Tecno Megabook T1 laptop has not been disclosed yet. The company says that the new laptop will be available in the third quarter of this year. Hopefully, its price will be revealed soon.

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