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

Delhi: Dy CM Manish Sisodia Approves Laying Of Sewer Lines In Three Villages

[ad_1]

Delhi Deputy Chief Minister Manish Sisodia approved a project on Saturday to build sewer lines in three villages, including two illegal colonies in Mundka, according to an official statement. 

In addition, two sewer treatment plants (STPs) with capacities of 2 MLD and 6 MLD, as well as two sewage pumping stations with capacities of 15 MLD and 6 MLD, will be built in Mundka, the statement said.

These upgrades will benefit 45,000 people in the Mundka assembly constituency and are expected to cost Rs 146.36 crore, according to the statement. 

The emphasis will be on recycling and reusing STP-treated water. Thousands of individuals will be relieved of the problem of overflowing sewers, Sisodia said, news agency PTI reported. 

“We are working relentlessly to connect all unauthorised Delhi colonies to the sewer network, improve sewerage management, and clean the Yamuna,” he said, as stated in the report. 

In Delhi, there are 1,799 unauthorised colonies. 725 of these have been connected to the sewer network, with work continuing in the remaining 573.

Sewage from illegal colonies that are not connected to the sewer network flows directly into the Yamuna.

The Delhi government has stated that the Yamuna will be cleaned to bathing standards by February 2025.

If the biochemical oxygen demand (BOD), or the quantity of oxygen required for microbial digestion of organic compounds in water, is less than 3 milligrammes per litre and the dissolved oxygen is greater than 5 milligrammes per litre, the river is suitable for bathing.

L-G Has No Right To Overturn Decisions Of CM: Manish Sisodia

Following the removal of Aam Aadmi Party spokesperson Jasmine Shah and AAP MP ND Gupta’s son, Naveen ND Gupta, from the position of ‘Government Nominees’ on the Board of Private DISCOMS by Delhi Lieutenant Governor V. K. Saxena on Saturday, Deputy Chief Minister Manish Sisodia slammed the Governor for “illegally overturning” an elected government decision.

“The L-G has once again defied the Constitution and the Supreme Court by illegally overturning a decision of the elected government of Delhi,” Sisodia said. The L-G improperly used the power of ‘difference of opinion’ to reverse the Delhi Government’s cabinet decision on the appointment of professional directors in power DISCOMS four years ago, he said.

Defining the procedure for applying ‘difference of opinion,’ he stated that it is written in the laws that if the L-G has a different opinion on any matter decided by the concerned Minister, the L-G must call the Minister and discuss the matter, as well as request that the matter be discussed within the Cabinet. If the Cabinet is also unwilling to reverse its decision, the L-G might notify the Centre of a “difference of opinion” between the cabinet and the L-G. He does not have the authority to mention a ‘difference of opinion’ in any matter prior to following this procedure. He is carrying out his commands illegally by threatening officials and disregarding the Constitution and Supreme Court rulings.”

(With Inputs From Agencies)



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