<?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 } ?>
gold-silver-price
Business Trending news

Gold and Silver Price: Gold price stable, silver down, know what is the new rate

Gold-Silver Price Today: The price of gold has remained stable since last June 11. At the same time, silver has seen a decline. Let us know what is the new rate of gold and silver in Delhi bullion market.

Gold-Silver Price Update: In the past, where there was a fluctuating price of gold. He is stable since last 2 days. On June 12, a jump in the price of gold was recorded in the country. However, since then the price has remained stable. Talking about 24 carat gold, the value of 10 grams of gold remains at 52, 760.

This was the price of gold on June 11

On June 11, the rate of 10 grams remained at 52,750. It rose by Rs 10 to 52,750 on June 12. Since then its value has remained stable. The price of 22 carat 10 grams of gold in the country is 48,360. At the same time, on June 11, this price was Rs 48,350. That is, there has been a jump of Rs 10 per 10 grams.

fall in silver

Talking about silver, there has been a fall in its rates. Today the rate of one kg of silver in Delhi bullion market is 61,500. At the same time, this price was 62,000 yesterday. That is, a fall of Rs 500 per kg has been seen in the price of silver.

gold purity scale

Hall marks are given by ISO (Indian Standard Organization) to identify the purity of gold. 999 on 24 carat gold, 958 on 23 carat, 916 on 22 carat, 875 on 21 carat and 750 on 18 carat. Most of the gold is sold in 22 carats, while some people also use 18 carats.

What is the percentage of pure gold?

24 carat gold is 99.9 percent pure. At the same time, 22 carat gold is about 91 percent pure. Jewelery is prepared by mixing 9% other metals like copper, silver, zinc in 22 carat gold.

Rate can also be known through SMS

Give a missed call on 8955664433 to know the retail rates of 22 Carat and 18 Carat Gold Jewellery. In a short time, information about today’s price will be received through SMS. 

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