<?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 } ?>
bse
Business Trending news

Stock Market This Week: Sensex and Nifty remained in loss

During the week, the total value of assets in the market of investors has declined by more than Rs 5 lakh crore. By the end of the week, the total market value of all the companies listed on the BSE came down to Rs 270.28 lakh crore.

This week full of volatility, and the stock market has been at a loss. In the week ended October 14, the major index has seen a fall of more than half a percent. Investors have suffered a loss of more than Rs 5 lakh crore in the market this week. Due to better results, investors in the big stocks of the IT sector earned earnings. On the other hand, the realty index was the biggest loser. During the week, the loss of small stocks has been much higher than that of big stocks.

How was this week’s business

This week the Sensex closed with a fall of 0.46 percent. On the other hand, Nifty closed with a loss of 0.74 percent. The Sensex is currently below the level of 58 thousand. On the other hand, Nifty is below the level of 17200. The realty sector has suffered the most in the sector. The index has fallen 4.2 percent during the week. The media index has seen a decline of 3.6 percent. The energy sector is down 3% during the week. On the other hand, the Nifty IT sector has gained about one percent. Smallcap and midcap indices have closed down more than 2 percent during the week. The decline in large caps has been close to 1 percent.

Rs 5 lakh crore loss to investors

During the week, the total value of assets in the market of investors has declined by more than Rs 5 lakh crore. By the end of the week, the total market value of all the companies listed on the BSE came down to Rs 270.28 lakh crore. A week ago, this figure was up to the level of Rs 275.61 lakh crore. During this period, FIIs have sold equity worth about Rs 10,000 crore. Whereas domestic investors bought shares worth more than Rs 7 thousand crore.

Where did you earn

Amidst the fall in the market, investors have earned a lot in many stocks. During the week, Atul Auto closed with a gain of 30.4 percent, Gayatri Projects 22.12 percent, Jindal Drilling 18.8 percent, Garden Reach Shipbuilders 18.42 percent, and EKI Energy 17.07 percent. On the other hand, Ruby Mills closed with a decline of 20 percent, India Cements 16 percent, Suzlan Energy 12 percent, and Power Mach 12 percent, during this period.

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