Skip to content
wiki.fftac.org

Template About - Source Excerpt 03

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

<h2><?php echo esc_html($about_copy['priorities_title']); ?></h2>
                        <p><?php echo esc_html($about_copy['priorities_summary']); ?></p>
                    </header>
                    <div class="foundation-priority-grid">
                        <?php foreach ($priorities as $priority) : ?>
                            <article class="card foundation-panel foundation-priority-card">
                                <p class="eyebrow"><?php echo esc_html($priority['eyebrow']); ?></p>
                                <h3><?php echo esc_html($priority['title']); ?></h3>
                                <p><?php echo esc_html($priority['summary']); ?></p>
                                <a class="text-link" href="<?php echo esc_url(antichrist_engine_foundation_get_page_url($priority['page'])); ?>"><?php echo esc_html($priority['cta']); ?></a>
                            </article>
                        <?php endforeach; ?>
                    </div>
                </section>
            </div>
        </div>

        <aside class="foundation-layout__aside">
            <article class="card foundation-panel foundation-panel--compact foundation-panel--sticky">
                <p class="eyebrow"><?php esc_html_e('Quick Routes', 'antichrist-engine'); ?></p>
                <ul class="membership-links">
                    <?php foreach ($quick_routes as $route) : ?>
                        <li><a href="<?php echo esc_url($route['url']); ?>"><?php echo esc_html($route['label']); ?></a></li>
                    <?php endforeach; ?>
                </ul>
            </article>
            <?php foreach ($reference_links as $group => $items) : ?>
                <article class="card foundation-panel foundation-panel--compact">
                    <p class="eyebrow"><?php echo esc_html('institution' === $group ? __('Reference File', 'antichrist-engine') : ('publication' === $group ? __('Publication Links', 'antichrist-engine') : __('Participation', 'antichrist-engine'))); ?></p>
                    <ul class="membership-links">
                        <?php foreach ($items as $item) : ?>
                            <li><a href="<?php echo esc_url($item['url']); ?>"><?php echo esc_html($item['label']); ?></a></li>
                        <?php endforeach; ?>
                    </ul>
                </article>
            <?php endforeach; ?>
            <article class="card foundation-panel foundation-panel--compact foundation-notice-card">
                <p class="eyebrow"><?php esc_html_e('Institutional Notice', 'antichrist-engine'); ?></p>
                <p class="foundation-panel__subline"><?php echo esc_html($document_profile['classification']); ?></p>
                <p><?php esc_html_e('This page exists so readers can understand the Foundation as a public institution with named files, offices, and boundaries before they ever decide whether to study, question, support, or join it.', 'antichrist-engine'); ?></p>
            </article>
        </aside>
    </div>
</section>
<?php
get_footer();