Skip to content
wiki.fftac.org

Template About - Source Excerpt 02

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

<h3><?php echo esc_html($marker['value']); ?></h3>
                            </article>
                        <?php endforeach; ?>
                    </div>
                </section>
            </div>

            <section id="operating-offices" class="card foundation-panel">
                <header class="entry-header">
                    <p class="eyebrow"><?php esc_html_e('Operating Offices', 'antichrist-engine'); ?></p>
                    <h2><?php echo esc_html($about_copy['offices_title']); ?></h2>
                    <p><?php echo esc_html($about_copy['offices_summary']); ?></p>
                </header>
                <div class="foundation-office-grid">
                    <?php foreach ($offices as $office) : ?>
                        <article class="card foundation-panel foundation-office-card">
                            <p class="eyebrow"><?php echo esc_html($office['eyebrow']); ?></p>
                            <h3><?php echo esc_html($office['title']); ?></h3>
                            <p><?php echo esc_html($office['summary']); ?></p>
                            <p class="foundation-panel__subline"><?php echo esc_html($office['current_cycle']); ?></p>
                            <a class="text-link" href="<?php echo esc_url(antichrist_engine_foundation_get_page_url($office['page'])); ?>"><?php echo esc_html($office['cta']); ?></a>
                        </article>
                    <?php endforeach; ?>
                </div>
            </section>

            <section id="core-records" class="card foundation-panel">
                <header class="entry-header">
                    <p class="eyebrow"><?php esc_html_e('Core Records', 'antichrist-engine'); ?></p>
                    <h2><?php echo esc_html($about_copy['records_title']); ?></h2>
                    <p><?php echo esc_html($about_copy['records_summary']); ?></p>
                </header>
                <div class="foundation-record-grid">
                    <?php foreach ($records as $record) : ?>
                        <article class="card foundation-panel foundation-record-card">
                            <p class="eyebrow"><?php echo esc_html($record['eyebrow']); ?></p>
                            <h3><?php echo esc_html($record['title']); ?></h3>
                            <p><?php echo esc_html($record['summary']); ?></p>
                            <a class="text-link" href="<?php echo esc_url(antichrist_engine_foundation_get_page_url($record['page'])); ?>"><?php echo esc_html($record['cta']); ?></a>
                        </article>
                    <?php endforeach; ?>
                </div>
            </section>

            <section id="reader-types" class="card foundation-panel">
                <header class="entry-header">
                    <p class="eyebrow"><?php esc_html_e('Reader Routes', 'antichrist-engine'); ?></p>
                    <h2><?php echo esc_html($about_copy['readers_title']); ?></h2>
                    <p><?php echo esc_html($about_copy['readers_summary']); ?></p>
                </header>
                <div class="reader-profile-grid">
                    <?php foreach ($reader_profiles as $slug => $profile) : ?>
                        <article id="<?php echo esc_attr('reader-profile-' . $slug); ?>" class="statement-card reader-profile-card">
                            <p class="eyebrow"><?php echo esc_html($profile['eyebrow']); ?></p>
                            <h3><?php echo esc_html($profile['title']); ?></h3>
                            <p><?php echo esc_html($profile['summary']); ?></p>
                            <p class="reader-profile-card__question"><?php echo esc_html($profile['question']); ?></p>
                            <p class="foundation-panel__subline"><?php echo esc_html($profile['fit']); ?></p>
                            <div class="reader-profile-card__actions">
                                <a class="text-link" href="<?php echo esc_url(antichrist_engine_foundation_build_target_url(
                                    $profile['primary_target'],
                                    $profile['primary_args'] ?? array(),
                                    $profile['primary_anchor'] ?? ''
                                )); ?>"><?php echo esc_html($profile['primary_cta']); ?></a>
                                <a class="text-link" href="<?php echo esc_url(antichrist_engine_foundation_build_target_url(
                                    $profile['secondary_target'],
                                    $profile['secondary_args'] ?? array(),
                                    $profile['secondary_anchor'] ?? ''
                                )); ?>"><?php echo esc_html($profile['secondary_cta']); ?></a>
                            </div>
                        </article>
                    <?php endforeach; ?>
                </div>
            </section>

            <div class="foundation-panel-grid">
                <section id="institutional-boundaries" class="card foundation-panel">
                    <header class="entry-header">
                        <p class="eyebrow"><?php esc_html_e('Institutional Boundaries', 'antichrist-engine'); ?></p>
                        <h2><?php echo esc_html($about_copy['boundaries_title']); ?></h2>
                        <p><?php echo esc_html($about_copy['boundaries_summary']); ?></p>
                    </header>
                    <div class="statement-grid">
                        <article class="statement-card">
                            <p class="eyebrow"><?php esc_html_e('What We Are', 'antichrist-engine'); ?></p>
                            <ul class="foundation-list foundation-list--tight">
                                <?php foreach ((array) ($boundaries['we_are'] ?? array()) as $statement) : ?>
                                    <li><?php echo esc_html($statement); ?></li>
                                <?php endforeach; ?>
                            </ul>
                        </article>
                        <article class="statement-card">
                            <p class="eyebrow"><?php esc_html_e('What We Are Not', 'antichrist-engine'); ?></p>
                            <ul class="foundation-list foundation-list--tight">
                                <?php foreach ((array) ($boundaries['we_are_not'] ?? array()) as $statement) : ?>
                                    <li><?php echo esc_html($statement); ?></li>
                                <?php endforeach; ?>
                            </ul>
                        </article>
                        <article class="statement-card">
                            <p class="eyebrow"><?php esc_html_e('Public Assurances', 'antichrist-engine'); ?></p>
                            <ul class="foundation-list foundation-list--tight">
                                <?php foreach ($assurances as $assurance) : ?>
                                    <li><strong><?php echo esc_html($assurance['title']); ?></strong> <?php echo esc_html($assurance['summary']); ?></li>
                                <?php endforeach; ?>
                            </ul>
                        </article>
                    </div>
                </section>

            <section id="research-lenses" class="card foundation-panel">
                <header class="entry-header">
                    <p class="eyebrow"><?php esc_html_e('Research Lenses', 'antichrist-engine'); ?></p>
                    <h2><?php echo esc_html($about_copy['lenses_title']); ?></h2>
                    <p><?php echo esc_html($about_copy['lenses_summary']); ?></p>
                </header>
                <div class="research-lab-grid">
                    <?php foreach ($research_labs as $lab) : ?>
                        <article class="statement-card research-lab-card">
                            <p class="eyebrow"><?php echo esc_html($lab['eyebrow']); ?></p>
                            <h3><?php echo esc_html($lab['title']); ?></h3>
                            <p><?php echo esc_html($lab['summary']); ?></p>
                            <p class="foundation-panel__subline"><?php echo esc_html($lab['focus']); ?></p>
                            <a class="text-link" href="<?php echo esc_url(antichrist_engine_foundation_get_page_url($lab['page'])); ?>"><?php echo esc_html($lab['cta']); ?></a>
                        </article>
                    <?php endforeach; ?>
                </div>
            </section>

                <section id="institutional-priorities" class="card foundation-panel">
                    <header class="entry-header">
                        <p class="eyebrow"><?php esc_html_e('Current Priorities', 'antichrist-engine'); ?></p>