Skip to content
wiki.fftac.org

Template Start Here

**Site relevance:** Antichrist.net

**Memory type:** theme source memory

**Source path:** Antichrist.net/wp-content/themes/antichrist-net/templates/template-start-here.php

**Size:** 1.6 KB

Summary

Template Name: Start Here

Source Preview

This source file is short enough to preview directly on its source-memory page.

<?php
/**
 * Template Name: Start Here
 * Template Post Type: page
 *
 * @package AntichristNet
 */
get_header();
?>
<main id="primary" class="site-main container page-layout start-template">
	<?php acn_breadcrumbs(); ?>
	<?php while ( have_posts() ) : the_post(); ?>
		<header class="page-header narrow">
			<p class="kicker"><?php esc_html_e( 'Orientation', 'antichrist-net' ); ?></p>
			<h1><?php the_title(); ?></h1>
			<p><?php esc_html_e( 'A clear landing path for new readers: what this site is, what it is not, and where to go next.', 'antichrist-net' ); ?></p>
		</header>
		<div class="entry-content narrow">
			<?php the_content(); ?>
		</div>
		<section class="section-band">
			<?php
			acn_card_grid(
				array(
					array(
						'kicker' => __( 'Read', 'antichrist-net' ),
						'title'  => __( 'Learning Hub', 'antichrist-net' ),
						'text'   => __( 'Start with definitions, interpretive traditions, and the history of the idea.', 'antichrist-net' ),
						'url'    => acn_page_url( 'learn' ),
					),
					array(
						'kicker' => __( 'Research', 'antichrist-net' ),
						'title'  => __( 'Archive', 'antichrist-net' ),
						'text'   => __( 'Browse contextualized source material, notes, and provenance.', 'antichrist-net' ),
						'url'    => acn_page_url( 'archive' ),
					),
					array(
						'kicker' => __( 'Participate', 'antichrist-net' ),
						'title'  => __( 'Members', 'antichrist-net' ),
						'text'   => __( 'Create a profile, join the directory, and request community access.', 'antichrist-net' ),
						'url'    => acn_page_url( 'members' ),
					),
				)
			);
			?>
		</section>
	<?php endwhile; ?>
</main>
<?php get_footer(); ?>