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

Target to double GSDP in the next five years: CM Dhami

Uttarakhand’s economy is mainly agriculture-based, and 90% of the state’s population is engaged in agriculture. On the basis of current prices for the year 2004, Uttarakhand’s gross domestic product was estimated at Rs 280.32 billion (6 billion dollars). This state, formed by separating from Uttar Pradesh, produces 8% of the total production of the old Uttar Pradesh.

The economy of Uttarakhand has taken the biggest leap in the last two decades. Due to the government’s efforts in the tourism sector, its participation has increased from 37% to 43.7%. The size of the economy has increased 24 times and the per capita income has increased 17 times. Per capita income has increased 17 times and budget size has also increased 20 times. The state government’s efforts in the field of tourism are paying off. Two years ago, the contribution of the tourism sector to the economy was 37 percent, which has now increased to 43.7 percent. The government’s resolve to double the economy in five years is rapidly taking shape.

At the time of formation of the state i.e. in the year 2000, the size of the economy was Rs 14501 crore. In the year 2023-24, it has increased to Rs 3.46 lakh crore. The tourism sector has played an important role in this. Similarly, per capita income has increased to Rs 2.60 lakh. In the year 2000, the per capita income was Rs 15,285.

When we look at the data of the last two years, the per capita income of the state has increased by 26 percent. With the pace of development works, the state budget has also increased 20 times.

At the time of the formation of the state in the year 2000, the budget size of Uttarakhand was about Rs 4500 crore. In the year 2024-25, it increased to more than 94 thousand crores. This includes Rs 89230.07 crore of the general budget and Rs 5013.05 crore of the supplementary budget.

I believe that under the able leadership of Chief Minister Dhami, Uttarakhand has achieved new zeniths of development. In this period, new doors of progress have opened in Uttarakhand. The performance on the economic front has also been encouraging. The per capita income of the state has increased 17 times, which is unexpected. Effective steps have been taken to increase revenue. Many departments of the state government running in loss are coming into a position to give profit today.

I not only hope but have unshakable faith that with the combined efforts of the indefatigable people of the state, the government, and the administration, we will very soon make our place among the first three states in the entire country. Till then, many congratulations to the present government on behalf of the entire people of the state and on my behalf for the current phenomenal achievements.

Article written by and Editorial credit: State Bureau Chief Himanshu Nauriyal.

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