Skip to content
wiki.fftac.org

Template Questions - Source Excerpt 02

Back to Template Questions

Summary

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

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

<h3><?php echo esc_html($faq['question']); ?></h3>
                                <p><?php echo esc_html($faq['answer']); ?></p>
                                <a
                                    class="text-link"
                                    href="<?php echo esc_url(antichrist_engine_foundation_build_target_url(
                                        (string) ($faq['target'] ?? ''),
                                        (array) ($faq['args'] ?? array()),
                                        (string) ($faq['anchor'] ?? '')
                                    )); ?>"
                                ><?php echo esc_html($faq['cta']); ?></a>
                            </article>
                        <?php endforeach; ?>
                    </div>
                </section>
            <?php endforeach; ?>
        </div>

        <aside class="foundation-layout__aside">
            <?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">
                <p class="eyebrow"><?php esc_html_e('Quick Routes', 'antichrist-engine'); ?></p>
                <ul class="membership-links">
                    <li><a href="<?php echo esc_url(antichrist_engine_foundation_get_page_url('manifesto')); ?>"><?php esc_html_e('Manifesto', 'antichrist-engine'); ?></a></li>
                    <li><a href="<?php echo esc_url(antichrist_engine_foundation_get_page_url('research')); ?>"><?php esc_html_e('Research program', 'antichrist-engine'); ?></a></li>
                    <li><a href="<?php echo esc_url(antichrist_engine_foundation_get_page_url('recovery')); ?>"><?php esc_html_e('Recovery guide', 'antichrist-engine'); ?></a></li>
                    <li><a href="<?php echo esc_url(antichrist_engine_foundation_build_target_url('contact', array('route' => 'general-editorial'), 'contact-desk')); ?>"><?php esc_html_e('Contact desk', 'antichrist-engine'); ?></a></li>
                    <li><a href="<?php echo esc_url(antichrist_engine_foundation_get_page_url('support')); ?>"><?php esc_html_e('Support brief', 'antichrist-engine'); ?></a></li>
                </ul>
            </article>
            <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 file exists so launch readers do not have to reverse-engineer the Foundation from slogans, scattered pages, or comment fragments.', 'antichrist-engine'); ?></p>
            </article>
            <article class="card foundation-panel foundation-panel--compact">
                <p class="eyebrow"><?php esc_html_e('Public Assurances', 'antichrist-engine'); ?></p>
                <ul class="foundation-list foundation-list--tight">
                    <?php foreach (array_slice($assurances, 0, 3) as $assurance) : ?>
                        <li><?php echo esc_html($assurance['title']); ?></li>
                    <?php endforeach; ?>
                </ul>
            </article>
        </aside>
    </div>
</section>
<?php
get_footer();