File: /home/temp/region/new.region-gk.ru/wp-content/themes/region-new/search.php
<?php get_header(); ?>
<div class="bg-light py-5 py-lg-6 custom-typography" style="min-height: 670px">
<div class="container"><div class="row"><div class="col">
<h3 class="mb-4 mb-xl-5 mb-xxl-6 text-center"><?php wp_title(''); ?></h3>
<?php while ( have_posts() ) : the_post(); ?>
<?php $content = get_the_content();
$content = strip_tags($content);
echo '<p>' . mb_substr($content, 0, 255) . '... </p>';
?>
<div class="text-center"><a class="btn btn-wide btn-primary" href="<?php echo get_the_permalink(); ?>">Подробнее</a></div>
<hr class="my-5">
<?php endwhile; ?>
</div></div></div>
</div>
<?php get_footer(); ?>