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

Samsung Galaxy M14 5G With Exynos 1330 SoC Launched: See Price

[ad_1]

Samsung Galaxy M14 5G was launched by the company in Ukraine as the latest A series smartphone. The company is expected to launch a host of devices this year, starting with Galaxy A34 5G and Galaxy A54 5G seeing their India release in March. The company is also expected to launch the Galaxy Tab S8 FE tablet alongside the Galaxy S23 FE smartphone and the Galaxy Tab S9 series in the second half of this year. The South Korean smartphone manufacturer also recently launched the Galaxy A14 smartphone with both 4G and 5G variants.

Samsung Galaxy M14 5G price, availability

The 4GB + 64GB variant of the Samsung Galaxy M14 5G is priced at UAH 8,299 (roughly Rs. 18,300) and the 4GB + 128GB configuration of the same smartphone is available for UAH 8,999 (roughly Rs. 19,900). The phone is offered in three colour variants – Blue, Dark Blue, and Silver.

The Samsung Galaxy M14 5G is now available for purchase in Ukraine. Samsung is yet to announce the availability of the device in India and other countries.

Samsung Galaxy M14 5G specifications, features

The recently launched smartphone is equipped with a 6.6-inch PLS LCD display with a full HD+ (2408 1080 pixel) resolution. The phone runs on Android 13, with the company’s One UI skin on top. The latest M-series smartphone is powered by an octa-core Exynos 1330 chipset, along with a Mali G68 GPU, 4GB of RAM, and up to 128GB of internal storage.

The Galaxy M14 5G features a triple-rear camera setup with a 50-megapixel primary sensor with an f/1.8 aperture. A 2-megapixel depth sensor and a 2-megapixel macro camera are also included. The 13-megapixel front camera is housed in a centrally aligned waterdrop notch at the top of the display.

The smartphone includes a 6000mAH battery unit and has a Type-C charging port which supports 25W fast charging. The charging brick will not be included in the retail box, so users will have to buy it separately. The smartphone also has a fingerprint scanner on the side.

The device’s connectivity features include 5G, 4G, Wi-Fi, Bluetooth 5.2, NFC, and GPS. The device measures 166.8 × 77.2 × 9.4mm and weighs 206g.


Samsung’s Galaxy S23 series of smartphones was launched earlier this week and the South Korean firm’s high-end handsets have seen a few upgrades across all three models. What about the increase in pricing? We discuss this and more on Orbital, the Gadgets 360 podcast. Orbital is available on Spotify, Gaana, JioSaavn, Google Podcasts, Apple Podcasts, Amazon Music and wherever you get your podcasts.
Affiliate links may be automatically generated – see our ethics statement for details.

For details of the latest launches and news from Samsung, Xiaomi, Realme, OnePlus, Oppo and other companies at the Mobile World Congress in Barcelona, visit our MWC 2023 hub.

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