Front Page - Source Excerpt 02
Summary
This source excerpt preserves a bounded section of Antichrist.net/wp-content/themes/antichrist-net/front-page.php so readers can inspect the evidence without opening the full source file.
**Source path:** Antichrist.net/wp-content/themes/antichrist-net/front-page.php
<section class="container section-band">
<header class="section-header">
<p class="kicker"><?php esc_html_e( 'Library and dossiers', 'antichrist-net' ); ?></p>
<h2><?php esc_html_e( 'The research agenda stays visible.', 'antichrist-net' ); ?></h2>
</header>
<?php acn_card_grid( $dossier_cards ); ?>
</section>
<section class="container section-band">
<header class="section-header">
<p class="kicker"><?php esc_html_e( 'Latest archive items', 'antichrist-net' ); ?></p>
<h2><?php esc_html_e( 'Recent entries', 'antichrist-net' ); ?></h2>
</header>
<?php
$latest = new WP_Query(
array(
'post_type' => array( 'post', 'acn_dossier', 'acn_signal' ),
'posts_per_page' => 3,
'ignore_sticky_posts' => true,
)
);
if ( $latest->have_posts() ) :
?>
<div class="post-grid">
<?php while ( $latest->have_posts() ) : $latest->the_post(); ?>
<article <?php post_class( 'mini-post-card' ); ?>>
<?php acn_entry_meta(); ?>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<?php the_excerpt(); ?>
</article>
<?php endwhile; ?>
</div>
<?php wp_reset_postdata(); ?>
<?php else : ?>
<div class="empty-state">
<h3><?php esc_html_e( 'Archive shell ready.', 'antichrist-net' ); ?></h3>
<p><?php esc_html_e( 'Seeded pages, dossiers, and source wrappers are available through the navigation while new posts are prepared.', 'antichrist-net' ); ?></p>
</div>
<?php endif; ?>
</section>
</main>
<?php get_footer(); ?>