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

DNA Special: Centre ask states to stay alert as H3N2 cases spike

[ad_1]

Cases of H3N2 Influenza are increasing rapidly. This raises the question if we are again headed to a situation like a corona pandemic. Viewing the rise in H3N2 cases, the Centre has also asked the states to be alert.  This is not the first time that Influenza cases have been reported, but this time, the disease has become deadly. People affected by the H3N2 infection are complaining about difficulty in breathing, leading to death in many cases. 

H3N2 cases are increasing continuously and very fast every day. So far–Delhi, Gujarat, Maharashtra, Karnataka, Bihar, Haryana, Assam, Goa, Union Territories There have been case reports of influenza in Puducherry. Maharashtra and Puducherry have the highest number of H3N2 cases. Two people have died due to H3N2 influenza in Maharashtra. Many patients infected with this virus are undergoing treatment in hospitals.

Read: Conman posing as government official get high-security cover during two-day visit to Srinagar, arrested

Number of H3N2 cases in Maharashtra: 

  1. There are a total of 352 cases of swine flu and H3N2 in Maharashtra.
  2. Of these, there are 58 patients suffering from H3N2.
  3. 32 patients of H3N2 influenza are admitted in Mumbai.
  4. Out of these 32 patients, 4 patients are H3N2 and 28 H1N1 virus patients.

H3N2 Influenza cases: Government of India advisory

  1. The Chief Secretaries of all the states and union territories, in an advisory have been asked to remain alert.
  2. All states have been asked to report new cases of H3N2, H1N1 and adenoviruses to the Center
  3. Isolation ward of 20 beds has been made in Delhi’s LNJP Hospital. In view of the new cases of this virus here, the facilities of beds and doctors are being increased.
  4. All the schools in Puducherry up to 8th have been closed from March 16th to 26th.
  5. The UP government has also issued an advisory regarding this. In the advisory, the UP government has instructed the hospitals that if the oxygen level of an H3N2 infected patient falls to 90, then he should be admitted immediately.
  6. The Uttarakhand government has also issued an advisory regarding H3N2. In the advisory, hospitals have been asked to make arrangements for isolation beds, wards, ICUs, ventilators.

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