<?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 } ?>
Health National Trending news

The Elimination of Malaria in India cannot happen till the private sector actively participates in the fight!

New Delhi, June 22, 2022: India has pledged to end malaria in India by 2030, as stated by the Honorable Prime Minister at the East Asia Summit in 2015, the nation has made immense progress in controlling malaria – we have recorded 86% decline in malaria cases and 79% decline in deaths between 2017 and 2021. We have now in the stage where elimination would be central to our efforts.

Ending malaria and other mosquito-borne diseases in India requires engaging individuals, communities, the private sector, and policy makers to take ownership and join the fight. This thought was also echoed by the Honorable Minister of Health and Family Welfare, Dr. Mansukh Mandaviya, when he stated on World Malaria Day 2022, “Not only diagnosis and treatment, but also swachhta and social awareness regarding malaria control and prevention are equally important in our collective fight against Malaria.”

Thus, the road to elimination demands a concerted and a much more aggressive strategy towards addressing key gaps and challenges such as including private sector in reporting malaria, digging out asymptomatic/hidden malaria cases, the need for real-time reporting, use of technology and innovations, and the need to make it a community movement and so on.

Mr. Pratik Kumar, Country Director of Malaria No More India, while addressing a media sensitization workshop stated, “Malaria in India is perceived as a poor man’s disease, thus receiving low priority in the public health agenda. A pertinent need is increased action and attention from the government. However, this ambitious goal cannot be achieved solely by the government and requires active participation and support from all sections of society. All hands must join in the effort to eliminate malaria so that India can achieve the goal of eliminating malaria from the country by 2030.”

The media sensitization workshop was organized by Malaria No More India to highlight the critical role the media can play to inspire urgent and proactive action required to achieve India’s goal of eliminating malaria by 2030. This was done in recognition of Anti-Malaria month, which is observed in India annually every June. The workshop underscored key challenges that require immediate media attention to ensure the upliftment of malaria in India’s public health agenda.

“The fight against malaria has recorded immense progress in the recent years, however as seen in the past, malaria has a history of bouncing back with a vengeance. Through active media attention, key gaps and issues can be regularly highlighted, ensuring they are addressed in strategic and policy decisions. This will help India expedite our efforts towards malaria elimination.”, added Dr. Kirti Mishra, Chief Technical Officer, Odisha, Malaria No More India while shedding light on some key challenges in India’s fight against malaria.

The final National Strategic plan for Malaria Elimination (2022-2027) will be critical to achieve zero indigenous transmission of Malaria in India by 2027 and to sustain zero transmission for three years until 2030, a requirement essential for receiving the Certification of Malaria Elimination from the World Health Organization. This demands urgent action and active participation from all stakeholders. We stand at a crossroad where collective action can help our country achieve a historic and inspiring feat – eliminating malaria from the nation – and pave way for a malaria free future for generations to come.

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