Anti Christ Thin Veil Archive
**Site relevance:** Anti-Christ.net
**Memory type:** theme source memory
**Source path:** Anti-Christ.net/wp-content/themes/anti-christ-thin-veil/archive.php
**Size:** 1.4 KB
Summary
@package Anti Christ Thin Veil
Source Preview
This source file is short enough to preview directly on its source-memory page.
<?php
/**
* Archive 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( 'Archive file', 'anti-christ-thin-veil' ); ?></p>
<?php the_archive_title( '<h1>', '</h1>' ); ?>
<?php the_archive_description( '<div class="archive-lead">', '</div>' ); ?>
</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 records in this file.', 'anti-christ-thin-veil' ); ?></h2>
<p><?php esc_html_e( 'This lane is reserved for source-led material that meets the archive standards. Begin with the journal, field guide, or Religion & The Machine while this file gathers records.', 'anti-christ-thin-veil' ); ?></p>
<p><a href="<?php echo esc_url( actv_posts_page_url() ); ?>"><?php esc_html_e( 'Read the Journal', 'anti-christ-thin-veil' ); ?></a> / <a href="<?php echo esc_url( actv_page_url( 'religion-and-the-machine' ) ); ?>"><?php esc_html_e( 'Religion & The Machine', 'anti-christ-thin-veil' ); ?></a> / <a href="<?php echo esc_url( actv_page_url( 'field-guide' ) ); ?>"><?php esc_html_e( 'Field Guide', 'anti-christ-thin-veil' ); ?></a></p>
</div>
<?php endif; ?>
</main>
<?php
get_footer();