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

Will the BJP government be formed again in Uttarakhand or will the Congress win? Here are the results of the opinion polls

The Election Commission has announced the dates of elections in five states including Uttarakhand, Uttar Pradesh. Will the BJP, which gave Uttarakhand three chief ministers in five years’ tenure, come to power again? Or , thanks to the trio of former CM Harish Rawat , State President Ganesh Godiyal and Leader of Opposition Pritam Singh, the Congress will return to form the government in Uttarakhand once again. 

The answer to these questions will finally be found after the counting of votes on March 10 . At present, a fresh opinion poll shows a close contest between the two parties, while on the other hand, the Aam Aadmi Party is also ready to dent the vote bank of both the parties. Polling will be held on February 14 in all the 13 districts of Garhwal-Kumaon of Uttarakhand.

The results of the opinion poll survey conducted by Times Now show that BJP will once again form the government in Uttarakhand. BJP is likely to get 44-50 seats. Talking about the opposition Congress, this time the Congress will have to be satisfied with only 12 to 15 seats. The AAP, which is in the electoral fray under the leadership of Colonel Ajay Kothiyal, can be reduced to only five to eight seats.

Talking about the opinion poll, Pushkar Singh Dhami remains the first choice of the people with 42.34 percent votes on the Chief Minister’s face. Apart from being a young face, people want to see Dhami as the chief of Uttarakhand once again, while with 23.89 percent, former Congress Chief Minister Harish Rawat is the people’s choice and AAP’s colonel. Ajay Kothiyal remains the third choice of the people with 14.55 percent votes. 

BJP: There are many faces including DhamiPresently CM Pushkar Singh Dhami is at the forefront of BJP as CM. After taking over as the third CM of the present government in July 2021, Dhami has been on a continuous tour of the state. All the leaders including PM Narendra Modi, Home Minister Amit Shah, Defense Minister Rajnath Singh, BJP National President Jaiprakash Nadda have told Dhami the future. It is believed that Dhami can be the face of CM in BJP at present. However, there are many contenders for the Chief Minister in the party, including former CM Dr. Ramesh Pokhriyal Nishank, former CM Trivendra Rawat, Rajya Sabha MP Anil Baluni and cabinet minister Satpal Maharaj. 

Congress: Rawat, Pritam and Arya-Godial tooApparently in the Congress, at this time the chairman of the election campaign committee, former CM Harish Rawat and Leader of Opposition Pritam Singh are in the race for the future CM. Supporters of both believe that only one of them will become CM if Congress comes to power. In the midst of all this, the way the talk of Dalit CM has been coming in the Congress, Yashpal Arya’s name also joins this race. Here, the supporters of Congress State President Ganesh Godiyal are seeing him as a hidden rut. On coming to power, Godiyal can also win if there is a struggle among the top leaders of the post of CM. 

AAP is the only party among all the political parties of the state, which has not kept any confusion regarding the CM. AAP has already declared Col Ajay Kothiyal (R) as its CM candidate. Delhi CM Arvind Kejriwal himself came to Uttarakhand and announced his name.

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