File: /home/assibfaf/public_html/wp-content/themes/zzero/search.php
<?php
/**
* The template for displaying search results pages
*
* @package WordPress
* @subpackage Gringo
* @since Gringo 1.0
*/
get_header(); ?>
<section class="section seo-section section-404">
<div class="container">
<?php if ( have_posts() ) : ?>
<div class="seo-section__text">
<h1 class="title title--md">Search results</h1>
</div>
<?php
while ( have_posts() ) : the_post(); ?>
<article class="page" id="post-<?php the_ID(); ?>">
<?php the_title( sprintf( '<h4><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h4>' ); ?>
<em id="resultUrl">[Page] <?php echo esc_url( get_permalink() ); ?><br></em>
<?php gringo_excerpt(); ?>
</article>
<?php
endwhile;
// If no content, include the "No posts found" template.
else : ?>
<div class="error404">
<div class="section-404">
<h1 class="mb-5 text-center">Oops, your search did not match any documents. Sorry!</h1>
<?php get_search_form(); ?>
</div>
</div>
<?php endif; ?>
</div>
</section>
<?php get_template_part( 'widgets/cta', 'calculator' ); ?>
<?php get_footer(); ?>