HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/Velosophe/dev.abloc.cc/wwwroot/backup/wp-content/themes/abloc/search.php
<?php get_header(); ?>

<div class="nm-search-results nm-blog">
	<div class="nm-blog-heading">
    	<div class="nm-row">	
        	<div class="col-xs-12">
                <h1><?php wp_kses( printf( __( '%s Search Results for: %s', 'nm-framework' ), $wp_query->found_posts, '<strong>' . get_search_query() . '</strong>' ), array( 'strong' => array() ) ); ?></h1>
            </div>
        </div>
	</div>
	
    <?php if ( have_posts() ) : ?>
            
        <div class="nm-search-results">
            <?php
				while ( have_posts() ) : the_post();
					get_template_part( 'content', 'search' );
				endwhile;
            ?>
        </div>
        
        <?php get_template_part( 'pagination' ); ?>
    
    <?php 
        else :
        
            // If no content, include the "No posts found" template
            get_template_part( 'content', 'none' );
            
        endif;
    ?>
</div>

<?php get_footer(); ?>