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

Law Minister Rijiju Pitches for Institutional Arbitration; Says AI Can Help Arbitrators

[ad_1]

Last Updated: February 19, 2023, 16:45 IST

Rijiju said the government’s Vision 2030 is to see arbitration space remain dynamic, amendable to adopting best practices. (File photo: Twitter/@KirenRijiju)

Rijiju said the government’s Vision 2030 is to see arbitration space remain dynamic, amendable to adopting best practices. (File photo: Twitter/@KirenRijiju)

Law Minister Kiren Rijiju on Sunday batted for institutional arbitration in the country and pointed at loopholes in ”ad hoc” arbitration

Law Minister Kiren Rijiju on Sunday batted for institutional arbitration in the country and pointed at loopholes in ”ad hoc” arbitration, saying such proceedings are susceptible to court interventions which delay the final outcome.

He also said artificial intelligence (AI) can help arbitrators in tasks such as document review and analysis, legal research, and drafting of awards.

Addressing a Delhi Arbitration Weekend event at the Delhi High Court, he said majority of the people go for ”ad hoc” arbitrations where the proceedings are not governed by pre-determined rules.

As a result, these proceedings are susceptible to court intervention at various stages which leads to delay in final decision for the parties involved. On the other hand, Rijiju pointed out, institutional arbitrations are regulated by the rules of an institution that provide for a more structured and secure process.

In addition, parties can benefit from the expertise of the arbitral institution having good quality infrastructure, he said.

He said the government’s Vision 2030 is to see arbitration space remain dynamic, amendable to adopting best practices, as also conscious of the needs of time-bound and final adjudication of contractual disputes.

With the emphasis on institutional arbitration, it is essential that new arbitration centres are set up in non-metro cities, he felt.

The whole system of institutional arbitration is crucial in creating and enhancing the ’Ease of Doing Business’ (EoDB) environment, he stressed.

He was of the view that EoDB is linked to ’Ease of living’.

Ease of living will be witnessed when there is prosperity in the society, and a robust system promoting ’Ease of Doing Business’ atmosphere, he told the gathering.

Citing a World Bank EoDB Report, he said India takes as much as 1,445 days to resolve a dispute and 31 per cent of the claim value for dispute resolution is spent during the process.

He said the support of the judiciary is must to realise the objectives of ease of doing business and ease of living.

The judiciary, the minister noted, has also been receptive of the various measures which have been taken to strengthen the dispute resolution measures in the country.

He also said that India’s courts must go paperless.

The Rs 7,000 crore allocated to Phase III of the e-courts project in the latest Union Budget is a testament to it.

Read all the Latest India News here

(This story has not been edited by News18 staff and is published from a syndicated news agency feed)

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