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

A Hailstorm a Day… ‘Freak’ Weather May Ruin This Year’s Himachal Apple Yield; Orchardists Fear Worse Ahead

[ad_1]

Orchardists from across the region said the temperature dipping by at least 9.9 degrees in the fruit belt has impacted the crop adversely. (Representative image/Getty Images)

Orchardists from across the region said the temperature dipping by at least 9.9 degrees in the fruit belt has impacted the crop adversely. (Representative image/Getty Images)

With the weather becoming so erratic and extreme, and given the dependence of the fruit on favourable climate conditions, apple cultivation could become unsustainable in the years to come, fear orchardists in Himachal Pradesh

Snow and hailstorm in Himachal Pradesh might bring cheer to tourists in the middle of a sweltering summer, but the Rs 5,500-crore apple industry might have to bear the brunt if the unseasonal weather continues, especially in the fruit belts of Shimla and Kinnaur.

Orchardists from across the region said the temperature dipping by at least 9.9 degrees in the fruit belt has impacted the crop adversely. Former mayor of Shimla and orchardist Sanjay Chauhan said: “The impact of climate change is very evident and this kind of freak weather was not seen in the last four decades.”

He said the unseasonal rain and hailstorms have damaged the apple trees and smashed the fruit buds in some places. But a hopeful Chauhan said there may be an improvement once the weather clears and temperatures rise. Data released by the MeT Department recently revealed that April 2023 has been the second wettest month since 2004.

Apple growers also point out that in order to protect their crop from hail, they put up nets, but these don’t help in case it snows. “The unpredictable weather and these measures have an adverse effect on the business and many apple growers are no longer finding it a profitable or dependable venture anymore,” said Hemant Chauhan, an apple grower from Rohru.

With the weather becoming so erratic and extreme, and given the dependence of the fruit on favourable climate conditions, apple cultivation could become unsustainable in the years to come, said Chauhan.

Growers say the apple orchards in low to mid heights have been hit hard by the unfavourable weather. As for stone fruits, plum seems to have suffered the maximum damage, particularly in Shimla and Mandi districts. Stone fruit growers lament that the plum yield could be around 50 % less this year as compared to the last year.

Apple orchards at lower-than 6,500 feet have been affected to a varying degree in the major apple producing districts of Shimla, Kullu and Mandi. Experts point out that an average temperature of 17 to 21 degree Celsius was required during the bloom for good fruit setting. But the average temperature in April has been around 11-12 degree Celsius, with night temperature plummeting to 2-3 degree Celsius, impacting the crop.

Even for orchards above 7,000 feet, the erratic weather has been a matter of concern. Though the crop there is yet to hit the bloom stage, orchardists are hoping that it holds on. “At higher elevation, we are expecting good fruits setting if weather stays warm and dry now. But concern remains over the erratic weather condition,” said Himanshu Bragta, an orchardist in Jubbal area.

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