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

PM Svanidhi Scheme

The central government has started this scheme under the self-reliant India campaign. Under this scheme, street vendors can get a collateral free loan of up to Rs 10,000 for one year. That is, in this scheme you will not have to give any kind of guarantee to take a loan. 

New Delhi:  PM Svanidhi Scheme: The daily wage laborers were hit the most by the corona virus infection. Now gradually the industries have started again. However, there are still a large number of people in the country who used to live their families by putting street vendors or horses and their business has not started yet. But now such people need not worry. The central government will send 10 thousand rupees (PM Svanidhi Scheme In Hindi) directly to your account. 

Government is giving Rs 10,000

In such a situation, if you or someone you know is not able to set up street vendors due to lack of capital, then there is good news for you. Now you can take loan up to Rs 10,000 without guarantee under ‘PM Svanidhi Yojana’. For this, you can go to your nearest bank and start business under this scheme by taking a loan of 10 thousand rupees. Let us know about this scheme in detail.

Highlights of the scheme 

Under this, it is necessary to link the mobile number of the borrower with Aadhaar.
Keep in mind, this loan will be available to those who were engaged in such work on or before 24 March 2020.
The plan period of this loan is only till March 2022, so complete its process soon.
Street vendors, whether urban or semi-urban, rural, can get this loan.
Subsidy is available on the interest of this loan and the amount is transferred to the account on a quarterly basis.

will get guarantee free loan

Under this scheme, street vendors can get a collateral free loan of up to Rs 10,000 for one year. That is, in this scheme you will not have to give any kind of guarantee to take a loan. In this, you can pay the loan in monthly installments.

Know how much subsidy is available?

It is worth noting that if the vendor makes regular repayment of the loan received in the PM Svanidhi scheme, then a provision of interest subsidy of 7 percent per annum has been made to him. The interest subsidy amount will be sent directly to the beneficiary’s bank account on a quarterly basis. If you pay the loan on time, your subsidy will be credited to your account.

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