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

Assam: Ponies from Majuli’s Sand Bars to Compete at the Historic Jorhat Races

[ad_1]

Edited By: Oindrila Mukherjee

Last Updated: February 08, 2023, 23:57 IST

Guwahati [Gauhati], India

The ponies at Assam’s Jorhat races display a perfect blend of trust, camaraderie and synchronisation between man and animal. (Image: News18)

The ponies at Assam’s Jorhat races display a perfect blend of trust, camaraderie and synchronisation between man and animal. (Image: News18)

Among a few left in the world, these ponies from the sand bars of Assam’s Majuli carry their jockeys barebacked to the finish line competing for the prestigious Governor’s Cup at the Jorhat Gymkhana Club

They run bareback for their masters, they are their master’s choice to keep their breed alive: they are the ponies – only a few of them left now – from the sand bars of Asia’s largest riverine island, Assam’s Majuli.

Though these “horses” do not fit the size and breed often seen at national and international derbies, they are match winners in their own respect. After all, size does not matter here; spirit does, and these ponies have proven it in both letter and spirit time and again during the historic Jorhat races of Upper Assam.

What makes them stand out besides their stature is that they are among a few left in the world that still battle it out on the race course, carrying their jockeys barebacked. With no saddle, stirrup or a proper harness, these ponies effortlessly carry their masters barebacked to the finish line competing for the prestigious Governor’s Cup.

“Our ancestors have been riding in the races for the past 150 years. We cannot say if some of our horses were lost to floods, as there were no races during Covid. This time it was difficult to gather the horses from the sand bars. I have 12 horses but my favourite is Utapuwali. We have been training our horses over the past two-and-a-half months,” said Ranjit Taye from Assam’s Jajhimukh.

Unlike in modern-day derbies, the jockeys here don’t wear any protective helmet during the bareback races. Even in the most aggressive Palio di Siena bareback horse races in Italy, jockeys don protective headgear.

The first race of the Jorhat races started on January 16, 1877, under the first club secretary CI Showers. The Jorhat Gymkhana Club has been a venue for the annual horse races ever since its inauguration.

The Jorhat races are described as one of the oldest sporting events of the region and one of its kind in the world. The idea behind the races was to display planters’ equestrian skills at a carnival-like atmosphere, where all the workers from plantations could be thoroughly entertained.

Mising riders and ponies from the Brahmaputra bank were invited to the races much later. Thousands gather in the greens of the club to witness the races and, this year too, will be no exception. Today, these races are not only an event for entertainment but more importantly a legacy that helps keep the horses and its breed alive.

“I have got two new horses for the races this time. I have been judged the best jockey for the last 12 years and now am providing training for the upcoming race,” said Sunit Taye, award-winning jockey of Jorhat Races.

The ponies at the Jorhat races display a perfect blend of trust, camaraderie and synchronisation between man and animal. In the mid-1900s, planters stopped using horses for their ‘kamjari’ (work) and the very existence of the races came under threat. Mising riders and ponies from the Brahmaputra bank were then invited to the races. Tea garden horses were replaced with Mising ponies and the races continued.

The ponies are ridden bareback – without saddles and stirrups. The Royal Calcutta Turf Club, organisers of the oldest horse races in India, helps the Jorhat races by providing technical guidance to further the sport and ensure the smooth running of this heritage event.

After the races, the ponies live wild and free on the sand bars of the mighty Brahmaputra only to be back on the running course the next year.

Read all the Latest India News here

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