<?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 } ?>
chief-secretary-radha-raturi
National Trending news

These three new laws will be implemented across the country from July

Uttarakhand is fully prepared for the three new laws to be implemented from July 1. Chief Secretary Radha Raturi gave the Union Home Secretary information in a virtual meeting. 

Uttarakhand has completed preparations for the three new criminal laws that will be implemented across the country from July 1. Chief Secretary Radha Raturi gave this information in a Tuesday virtual meeting chaired by the Union Home Secretary. The Union Home Secretary discussed with all the states the progress made so far at the state level before implementing the new laws.

Indian Civil Defence Code 2023, Indian Justice Code 2023, and Indian Security Act 2023 are to be implemented from July 1. CS said all training regarding information about the laws will be completed by June 20. Training for CCTNS software update will also be completed by May 31.

A method for simply reading the laws has been prepared.
After the passing of the new criminal laws, in coordination with the training institutes, 50 officers of the state were given master trainer courses from Ghaziabad, Jaipur. It was told that 18 other officers were also given training as master trainers. Also, Uttarakhand Police has prepared a handbook. All the courses are being conducted on this basis. In this, a method for merely reading major laws has been prepared. 25 thousand copies of the handbook have been distributed to police officers and employees. Three modules are being prepared for online training.

Told that, considering the short time, the training has been decentralized up to the district level. A joint team of all master trainers and prosecution officers are training the investigation officers of civil police in offline mode. Such employees who do not have direct involvement in police investigations are to be trained in online mode. An online module is being prepared for this.

The two-day training given to IPS officers and police captains
was told that this module is based on artificial intelligence. By the end of this month, it will be run on the I Got Karmayogi portal created by the central government. After this, all the personnel will be given one month to complete the online training. Constables and head constables will be given about 20 days in view of the Chardham Yatra.

He said they would be trained after studying the 18 lecture modules available on the portal and taking the test. 1000 recruit constables of civil police and PAC have been given three days of training. For this, about 500 head constables have also been given training on new criminal laws for promotion. All IPS officers and police captains were also given two-day training.

Told, offline training was to be completed in four phases, out of which three phases have been completed so far. This training has also been completed in Bageshwar, Uttarkashi, and Rudraprayag. Seventy-five percent of offline mode training has been completed. Offline training will be completed in the next week. Registration of all police personnel is being done on the I Got Karmayogi portal.

25 thousand police personnel will be trained

190 changes, big and small, have been made in the Indian Judicial Code, 360 in the Indian Civil Defense Code, and 45 in the Indian Evidence Act. A training roadmap has been prepared to make the new laws reach all police officers and employees. Training of about 25,000 police personnel is proposed in online and offline mode.

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