Anti Christ Thin Veil Search
**Site relevance:** Anti-Christ.net
**Memory type:** theme source memory
**Source path:** Anti-Christ.net/wp-content/themes/anti-christ-thin-veil/search.php
**Size:** 1 KB
Summary
Search results template.
Source Preview
This source file is short enough to preview directly on its source-memory page.
<?php
/**
* Search results template.
*
* @package Anti_Christ_Thin_Veil
*/
get_header();
?>
<main id="primary" class="site-main archive-shell">
<header class="archive-hero">
<p class="section-label"><?php esc_html_e( 'Search', 'anti-christ-thin-veil' ); ?></p>
<h1><?php printf( esc_html__( 'Results for: %s', 'anti-christ-thin-veil' ), '<span>' . esc_html( get_search_query() ) . '</span>' ); ?></h1>
</header>
<?php if ( have_posts() ) : ?>
<div class="post-grid">
<?php
while ( have_posts() ) :
the_post();
actv_render_post_card();
endwhile;
?>
</div>
<?php the_posts_navigation(); ?>
<?php else : ?>
<div class="entry-content">
<h2><?php esc_html_e( 'No signal returned.', 'anti-christ-thin-veil' ); ?></h2>
<p><?php esc_html_e( 'Search pages stay out of public indexes; use them as a local tool, then return to the curated archive lanes.', 'anti-christ-thin-veil' ); ?></p>
<?php get_search_form(); ?>
</div>
<?php endif; ?>
</main>
<?php
get_footer();