Skip to content
wiki.fftac.org

Template Support - Source Excerpt 02

Back to Template Support

Summary

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

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

<?php if (!empty($resolved_path['is_external'])) : ?>target="_blank" rel="noopener"<?php endif; ?>
                                ><?php echo esc_html($path['cta']); ?></a>
                                <a class="text-link" href="<?php echo esc_url(antichrist_engine_foundation_build_target_url(
                                    (string) ($path['proof_target'] ?? ''),
                                    (array) ($path['proof_args'] ?? array()),
                                    (string) ($path['proof_anchor'] ?? '')
                                )); ?>"><?php echo esc_html($path['proof_cta']); ?></a>
                            </div>
                        </article>
                    <?php endforeach; ?>
                </div>
            </section>

            <section class="card foundation-panel">
                <header class="entry-header">
                    <p class="eyebrow"><?php esc_html_e('Support Commitments', 'antichrist-engine'); ?></p>
                    <h2><?php esc_html_e('How money stays subordinate to the record', 'antichrist-engine'); ?></h2>
                </header>
                <div class="statement-grid">
                    <?php foreach ($support_commitments as $commitment) : ?>
                        <article class="statement-card support-commitment-card">
                            <h3><?php echo esc_html($commitment['title']); ?></h3>
                            <p><?php echo esc_html($commitment['summary']); ?></p>
                        </article>
                    <?php endforeach; ?>
                </div>
            </section>
        </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('charter')); ?>"><?php esc_html_e('Institutional charter', 'antichrist-engine'); ?></a></li>
                    <li><a href="<?php echo esc_url(antichrist_engine_foundation_get_page_url('standards')); ?>"><?php esc_html_e('Editorial standards', 'antichrist-engine'); ?></a></li>
                    <li><a href="<?php echo esc_url(antichrist_engine_foundation_build_target_url('contact', array('route' => 'media-partnerships'), 'contact-desk')); ?>"><?php esc_html_e('Underwriting desk', 'antichrist-engine'); ?></a></li>
                    <li><a href="<?php echo esc_url(antichrist_engine_foundation_build_target_url('downloads', array(), 'press-kit')); ?>"><?php esc_html_e('Press kit', '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>
                </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('Support should strengthen the public record and its accessibility, not create a new economy of reverence around the institution.', '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();