<div class="search-results">

 <?php if($results): ?>
 <div class="container">
 <header>
 <h1><?php echo static::e($search_title); ?></h1>
 <?php if($search_subtitle != ""): ?>
 <div class="search-info px-3"><?php echo $search_subtitle; ?></div>
 <?php endif; ?>
 </header>


 <?php echo $pagination_html; ?>


 <?php $__currentLoopData = $results; $this->addLoop($__currentLoopData); foreach($__currentLoopData as $adv): $this->incrementLoopIndices(); $loop = $this->getFirstLoop(); ?>
 <?php echo $this->runChild("$results_theme.result", ['adv' => $adv, 'params' => $view_params[$adv['advertisment_id']]]); ?>
 <?php endforeach; $this->popLoop(); $loop = $this->getFirstLoop(); ?>
 </div>
 <div class="container">
 <?php echo $pagination_html; ?>

 </div>
 <?php else: ?>
 <div class="container">
 <header>
 <h1><?php echo static::e($search_title); ?></h1>
 <?php if($search_subtitle != ""): ?>
 <div class="search-info px-3"><?php echo $search_subtitle; ?></div>
 <?php endif; ?>
 </header>
 <div class="alert alert-danger m-3">
 <p>Sorry! We did not find anything matching your criteria!</p>
 </div>
 </div>
 <?php endif; ?>

</div>