Skip to content
wiki.fftac.org

Template Standards - Source Excerpt 03

Back to Template Standards

Summary

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

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

<?php foreach ($publication_cadence as $cadence_item) : ?>
                        <article class="statement-card standards-cadence-card">
                            <p class="eyebrow"><?php echo esc_html($cadence_item['eyebrow']); ?></p>
                            <h3><?php echo esc_html($cadence_item['title']); ?></h3>
                            <p><?php echo esc_html($cadence_item['summary']); ?></p>
                            <p class="foundation-panel__subline"><?php echo esc_html($cadence_item['note']); ?></p>
                        </article>
                    <?php endforeach; ?>
                </div>
                <?php if ($review_notices) : ?>
                    <div class="standards-review-grid">
                        <?php foreach ($review_notices as $notice) : ?>
                            <article class="statement-card review-notice-card review-notice-card--<?php echo esc_attr($notice['status'] ?? ''); ?>">
                                <div class="review-notice-card__header">
                                    <p class="research-record-pill"><?php echo esc_html($notice['record_id']); ?></p>
                                    <span class="tag-pill review-notice-card__status review-notice-card__status--<?php echo esc_attr($notice['status'] ?? ''); ?>">
                                        <?php echo esc_html($notice['status_label']); ?>
                                    </span>
                                </div>
                                <p class="eyebrow"><?php echo esc_html($notice['phase'] ?? ''); ?></p>
                                <h3><?php echo esc_html($notice['title'] ?? ''); ?></h3>
                                <p><?php echo esc_html($notice['summary'] ?? ''); ?></p>
                                <p class="foundation-panel__subline"><?php echo esc_html($notice['current_state'] ?? ''); ?></p>
                                <a class="text-link" href="<?php echo esc_url($notice['record_url'] ?? antichrist_engine_foundation_get_page_url('review_notices')); ?>"><?php esc_html_e('Open notice', 'antichrist-engine'); ?></a>
                            </article>
                        <?php endforeach; ?>
                    </div>
                <?php endif; ?>
            </section>
        </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">
                <p class="eyebrow"><?php esc_html_e('Launch Queue', 'antichrist-engine'); ?></p>
                <ul class="foundation-list foundation-list--tight standards-launch-list">
                    <?php foreach ($launch_priorities as $priority) : ?>
                        <li>
                            <strong><?php echo esc_html($priority['title']); ?></strong>
                            <span><?php echo esc_html($priority['summary']); ?></span>
                        </li>
                    <?php endforeach; ?>
                </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 page exists so publishing, AI, archive, and amendment rules can be inspected as one governed system instead of being inferred from scattered templates.', 'antichrist-engine'); ?></p>
            </article>
        </aside>
    </div>
</section>
<?php
get_footer();