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

Strictness on the employees of Dhami government’s assembly backdoor recruitment

The Vidhan Sabha Secretariat has started removing the employees appointed after the year 2016. Orders were issued to remove forty employees late on Monday evening. Assembly Speaker Ritu Khanduri confirmed this.

The Vidhan Sabha Secretariat has started removing the employees appointed after the year 2016. Orders were issued to remove forty employees late on Monday evening. Confirming this, Speaker Ritu Khanduri said that the employees are being removed in a phased manner.

Vis Speaker Khanduri had constituted an inquiry committee on the backdoor recruitments in the assembly. This committee, in its report given on September 19, had called the appointment of all the personnel appointed in the Vidhan Sabha from the year 2000 to 2022 as against the rules. However, in respect of employees appointed before the year 2016, it was recommended to take a legal opinion.

On this, the Speaker had decided to remove the employees recruited after the year 2016. Khanduri said that retrenchment of employees has been started. The number of such employees is large, so this process will take some time. Employees allege favoritism Here, many employees appointed in the Assembly after the year 2016 have alleged bias.

Vis Speaker Khanduri had constituted an inquiry committee on the backdoor recruitments in the assembly. This committee, in its report given on September 19, had called the appointment of all the personnel appointed in the Vidhan Sabha from the year 2000 to 2022 as against the rules. However, in respect of employees appointed before the year 2016, it was recommended to take the legal opinion.

On this, the Speaker had decided to remove the employees recruited after the year 2016. Khanduri said that retrenchment of employees has been started. The number of such employees is large, so this process will take some time. Employees allege favoritism Here, many employees appointed in the Assembly after the year 2016 have alleged bias.

He says that the decisions of the High Court and the Supreme Court have come in the matter of ad-hoc appointments of the year 2016. There was no expert related to law, or justice in the inquiry committee. In such a situation, why the legal opinion was not taken in the matter of employees appointed after the year 2016? He said that in December 2012, the employees appointed at the time of former Vis President Harbansh Kapoor and in August 2012 under Govind Singh Kunjwal were regularized in just one and a half years.

On what basis were they given relief? The employees termed the delay in seeking a legal opinion regarding the employees appointed before 2016 as biased. However, Speaker Khanduri said that legal opinion is being taken.

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