Home
**Site relevance:** Anti-Christ.net
**Memory type:** theme source memory
**Source path:** Anti-Christ.net/wp-content/themes/anti-christ-thin-veil/home.php
**Size:** 2.8 KB
Summary
Blog/journal index template.
Source Preview
This source file is short enough to preview directly on its source-memory page.
<?php
/**
* Blog/journal index 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( 'Journal', 'anti-christ-thin-veil' ); ?></p>
<h1><?php esc_html_e( 'Dispatches from the thin veil.', 'anti-christ-thin-veil' ); ?></h1>
<p class="archive-lead"><?php esc_html_e( 'Launch essays, claim reviews, toolkit notes, and civic dispatches. The voice can be atmospheric; the method stays lawful, sourced, and correctable.', 'anti-christ-thin-veil' ); ?></p>
</header>
<section class="section-block journal-primer" aria-labelledby="journal-primer-title">
<div class="section-head">
<div>
<p class="section-label"><?php esc_html_e( 'Launch lanes', 'anti-christ-thin-veil' ); ?></p>
<h2 id="journal-primer-title"><?php esc_html_e( 'Read by genre.', 'anti-christ-thin-veil' ); ?></h2>
</div>
<p><?php esc_html_e( 'A dispatch may be an essay, a dossier update, a claim review, a field guide note, a source desk entry, or a toolkit. Genre tells readers how to weigh the claim.', 'anti-christ-thin-veil' ); ?></p>
</div>
<div class="taxonomy-strip">
<a href="<?php echo esc_url( actv_category_url( 'journal' ) ); ?>"><?php esc_html_e( 'Journal', 'anti-christ-thin-veil' ); ?></a>
<a href="<?php echo esc_url( actv_category_url( 'dossiers' ) ); ?>"><?php esc_html_e( 'Dossiers', 'anti-christ-thin-veil' ); ?></a>
<a href="<?php echo esc_url( actv_category_url( 'claim-review' ) ); ?>"><?php esc_html_e( 'Claim Review', 'anti-christ-thin-veil' ); ?></a>
<a href="<?php echo esc_url( actv_category_url( 'toolkit' ) ); ?>"><?php esc_html_e( 'Toolkit', 'anti-christ-thin-veil' ); ?></a>
<a href="<?php echo esc_url( actv_category_url( 'source-desk' ) ); ?>"><?php esc_html_e( 'Source Desk', 'anti-christ-thin-veil' ); ?></a>
</div>
</section>
<?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="post-grid">
<?php
actv_render_static_card( 'The Thin Veil Was Never the Point', 'Launch Dispatch', 'The gothic surface is a door, not a doctrine. The work underneath is lawful public memory.', actv_page_url( 'start-here' ) );
actv_render_static_card( 'When Rescue Becomes a System', 'Launch Dispatch', 'False salvation systems promise order while converting people into debt, data, labor, silence, and managed fear.', actv_page_url( 'the-machine' ) );
actv_render_static_card( 'EO 14202 Claim Review', 'Claim Review', 'The order is documented. The government-wide-war conclusion remains contested.', actv_page_url( 'eo-14202-dossier' ) );
?>
</div>
<?php endif; ?>
</main>
<?php
get_footer();