Skip to content
wiki.fftac.org

Template About - Source Excerpt 01

Back to Template About

Summary

This source excerpt preserves a bounded section of Anti-Christ.org/wp-content/themes/antichrist-engine/template-about.php so readers can inspect the evidence without opening the full source file.

**Source path:** Anti-Christ.org/wp-content/themes/antichrist-engine/template-about.php

<?php
/**
 * Template Name: About
 * Template Post Type: page
 *
 * @package Antichrist_Engine
 */

get_header();

the_post();

$identity               = antichrist_engine_foundation_identity();
$document_profile       = antichrist_engine_foundation_document_profile('about');
$about_copy             = antichrist_engine_foundation_about_interface_copy();
$about_routes           = antichrist_engine_foundation_about_route_map();
$public_thesis          = antichrist_engine_foundation_public_thesis_cards();
$markers                = antichrist_engine_foundation_institutional_markers();
$offices                = antichrist_engine_foundation_operating_offices();
$records                = antichrist_engine_foundation_official_records();
$reader_profiles        = antichrist_engine_foundation_reader_profiles();
$boundaries             = antichrist_engine_foundation_boundaries();
$assurances             = antichrist_engine_foundation_public_assurances();
$research_labs          = antichrist_engine_foundation_research_labs();
$priorities             = antichrist_engine_foundation_program_priorities();
$reference_links        = antichrist_engine_foundation_get_reference_links('about');
$quick_routes           = array(
    array(
        'label' => __('Manifesto', 'antichrist-engine'),
        'url'   => antichrist_engine_foundation_get_page_url('manifesto'),
    ),
    array(
        'label' => __('Research Program', 'antichrist-engine'),
        'url'   => antichrist_engine_foundation_get_page_url('research'),
    ),
    array(
        'label' => __('Editorial Standards', 'antichrist-engine'),
        'url'   => antichrist_engine_foundation_get_page_url('standards'),
    ),
    array(
        'label' => __('Recovery Guide', 'antichrist-engine'),
        'url'   => antichrist_engine_foundation_get_page_url('recovery'),
    ),
    array(
        'label' => __('Join', 'antichrist-engine'),
        'url'   => antichrist_engine_foundation_get_page_url('join'),
    ),
);
?>
<section class="hero hero--foundation">
    <div class="container hero__grid hero__grid--foundation">
        <div class="hero__content">
            <p class="eyebrow"><?php esc_html_e('About The Foundation', 'antichrist-engine'); ?></p>
            <h1><?php the_title(); ?></h1>
            <p class="hero__lead"><?php echo esc_html($about_copy['hero_lead']); ?></p>
            <ul class="hero__meta" aria-label="<?php esc_attr_e('About profile', 'antichrist-engine'); ?>">
                <li>
                    <span><?php esc_html_e('Classification', 'antichrist-engine'); ?></span>
                    <strong><?php echo esc_html($document_profile['classification']); ?></strong>
                </li>
                <li>
                    <span><?php esc_html_e('Access', 'antichrist-engine'); ?></span>
                    <strong><?php echo esc_html($document_profile['access']); ?></strong>
                </li>
                <li>
                    <span><?php esc_html_e('Status', 'antichrist-engine'); ?></span>
                    <strong><?php echo esc_html($identity['status']); ?></strong>
                </li>
            </ul>
            <div class="hero__actions">
                <a class="button" href="#institution-map"><?php esc_html_e('Open the institution map', 'antichrist-engine'); ?></a>
                <a class="button button--ghost" href="<?php echo esc_url(antichrist_engine_foundation_get_page_url('manifesto')); ?>"><?php esc_html_e('Read the manifesto', 'antichrist-engine'); ?></a>
            </div>
        </div>
        <div class="hero__visual card foundation-panel foundation-panel--official">
            <p class="eyebrow"><?php esc_html_e('Institutional Brief', 'antichrist-engine'); ?></p>
            <h2><?php echo esc_html($document_profile['record_id']); ?></h2>
            <div class="foundation-kv">
                <div class="foundation-kv__item">
                    <span><?php esc_html_e('Markers', 'antichrist-engine'); ?></span>
                    <strong><?php echo esc_html(number_format_i18n(count($markers))); ?></strong>
                </div>
                <div class="foundation-kv__item">
                    <span><?php esc_html_e('Operating offices', 'antichrist-engine'); ?></span>
                    <strong><?php echo esc_html(number_format_i18n(count($offices))); ?></strong>
                </div>
                <div class="foundation-kv__item">
                    <span><?php esc_html_e('Core records', 'antichrist-engine'); ?></span>
                    <strong><?php echo esc_html(number_format_i18n(count($records))); ?></strong>
                </div>
            </div>
            <p class="foundation-panel__subline"><?php echo esc_html($about_copy['panel_subline']); ?></p>
        </div>
    </div>
</section>

<section class="section section--narrow">
    <div class="container foundation-layout">
        <div class="foundation-layout__main">
            <article <?php post_class('page-article card foundation-panel foundation-prose'); ?>>
                <header class="entry-header">
                    <p class="eyebrow"><?php esc_html_e('Institutional Brief', 'antichrist-engine'); ?></p>
                    <h2 class="entry-title"><?php the_title(); ?></h2>
                </header>
                <div class="entry-content">
                    <?php the_content(); ?>
                </div>
            </article>

            <section id="public-thesis" class="card foundation-panel">
                <header class="entry-header">
                    <p class="eyebrow"><?php esc_html_e('Public Thesis', 'antichrist-engine'); ?></p>
                    <h2><?php echo esc_html($about_copy['thesis_title']); ?></h2>
                    <p><?php echo esc_html($about_copy['thesis_summary']); ?></p>
                </header>
                <div class="about-thesis-grid">
                    <?php foreach ($public_thesis as $thesis) : ?>
                        <article class="statement-card about-thesis-card">
                            <p class="eyebrow"><?php echo esc_html($thesis['eyebrow']); ?></p>
                            <h3><?php echo esc_html($thesis['title']); ?></h3>
                            <p><?php echo esc_html($thesis['summary']); ?></p>
                            <a class="text-link" href="<?php echo esc_url(antichrist_engine_foundation_build_target_url(
                                (string) ($thesis['target'] ?? ''),
                                (array) ($thesis['args'] ?? array()),
                                (string) ($thesis['anchor'] ?? '')
                            )); ?>"><?php echo esc_html($thesis['cta']); ?></a>
                        </article>
                    <?php endforeach; ?>
                </div>
            </section>

            <div class="foundation-panel-grid">
                <section id="institution-map" class="card foundation-panel">
                    <header class="entry-header">
                        <p class="eyebrow"><?php esc_html_e('Institution Map', 'antichrist-engine'); ?></p>
                        <h2><?php echo esc_html($about_copy['map_title']); ?></h2>
                        <p><?php echo esc_html($about_copy['map_summary']); ?></p>
                    </header>
                    <div class="statement-grid">
                        <?php foreach ($about_routes as $route) : ?>
                            <article class="statement-card question-route-card">
                                <p class="eyebrow"><?php echo esc_html($route['eyebrow']); ?></p>
                                <h3><?php echo esc_html($route['title']); ?></h3>
                                <p><?php echo esc_html($route['summary']); ?></p>
                                <a class="text-link" href="<?php echo esc_url('#' . $route['anchor']); ?>"><?php echo esc_html($route['cta']); ?></a>
                            </article>
                        <?php endforeach; ?>
                    </div>
                </section>

                <section id="institutional-markers" class="card foundation-panel">
                    <header class="entry-header">
                        <p class="eyebrow"><?php esc_html_e('Institutional Markers', 'antichrist-engine'); ?></p>
                        <h2><?php echo esc_html($about_copy['markers_title']); ?></h2>
                        <p><?php echo esc_html($about_copy['markers_summary']); ?></p>
                    </header>
                    <div class="statement-grid">
                        <?php foreach ($markers as $marker) : ?>
                            <article class="statement-card">
                                <p class="eyebrow"><?php echo esc_html($marker['label']); ?></p>