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

Odisha train tragedy: Toll rises to 292 as man from Bengal succumbs to his injuries

[ad_1]

By Press Trust of India: The death toll in the Balasore train accident rose to 292 on Sunday with a 24-year-old passenger from West Bengal succumbing to his injuries at a state-run hospital in Cuttack, an official said.

Paltu Naskar was undergoing treatment at the central ICU of SCB Medical College and Hospital and breathed his last during the day, he said.

Naskar was a resident of South 24 Parganas of West Bengal.

ALSO READ | Balasore train mishap: How Odisha showed its famed disaster response again

He was injured in the train accident on June 2 and admitted to the hospital in a critical condition, an East Coast Railway official said, adding that the person was on ventilator support from June 17 as his condition deteriorated.

Of the 205 injured people admitted to the SCB Medical College and Hospital, 45 are still under treatment, including 12 in ICU, an official of the health facility said.

“Of the 12 patients in ICU, the condition of two persons remain critical,” he said.

Altogether 287 people died on the spot in the triple train accident earlier this month and five others succumbed to their injuries in hospitals, while 1,208 were injured.

The Shalimar-Chennai Central Coromandel Express, Bengaluru-Howrah Super Fast Express and a goods train were involved in the pile-up, now being described as one of India’s worst train accidents.

The Coromandel Express crashed into a stationary goods train, derailing most of its coaches around 7 pm on June 2 near the Bahanaga Bazar station.

ALSO READ | After Odisha train tragedy, candidates push Centre to expedite recruitment in Railways’ safety department

A few coaches of the Coromandel Express whiplashed the last few coaches of the Bengaluru-Howrah Express, which was passing by at the same time.

Meanwhile, 81 bodies remain unidentified at the AIIMS in Bhubaneswar.

Though 70 people have already given blood samples for DNA testing, the reports are still awaited, an official said.

Authorities of AIIMS Bhubaneswar on Saturday wrote a letter to the Delhi-based Central Forensic Science Laboratory to send the DNA sampling test reports for at least 15 people as their family members were eagerly waiting for such verification reports.

Meanwhile, the Indian Railways, in a public notice, has appealed to relatives of the deceased in the Bahanaga train accident to come forward and give their DNA samples to establish their identity and relationship with the deceased.

ALSO READ | CBI seals Bahanaga Bazar railway station to probe Odisha accident, no train halt for now

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