Template Standards - Source Excerpt 02
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
<p class="foundation-panel__subline"><?php echo esc_html($check['note']); ?></p>
</article>
<?php endforeach; ?>
</div>
</section>
<section id="launch-proof-gates" class="card foundation-panel">
<header class="entry-header">
<p class="eyebrow"><?php esc_html_e('Final Proof Gates', 'antichrist-engine'); ?></p>
<h2><?php echo esc_html($standards_copy['proof_title']); ?></h2>
<p><?php echo esc_html($standards_copy['proof_summary']); ?></p>
</header>
<div class="standards-proof-grid">
<?php foreach ($launch_proof_gates as $gate) : ?>
<article class="statement-card standards-proof-card">
<p class="eyebrow"><?php echo esc_html($gate['eyebrow']); ?></p>
<h3><?php echo esc_html($gate['surface']); ?></h3>
<p class="standards-proof-card__title"><?php echo esc_html($gate['title']); ?></p>
<dl class="standards-proof-card__details">
<div>
<dt><?php esc_html_e('Test', 'antichrist-engine'); ?></dt>
<dd><?php echo esc_html($gate['test']); ?></dd>
</div>
<div>
<dt><?php esc_html_e('Pass condition', 'antichrist-engine'); ?></dt>
<dd><?php echo esc_html($gate['pass']); ?></dd>
</div>
<div>
<dt><?php esc_html_e('Owner', 'antichrist-engine'); ?></dt>
<dd><?php echo esc_html($gate['owner']); ?></dd>
</div>
</dl>
<a class="text-link" href="<?php echo esc_url(antichrist_engine_foundation_build_target_url(
(string) ($gate['target'] ?? ''),
array(),
(string) ($gate['anchor'] ?? '')
)); ?>"><?php echo esc_html($gate['cta']); ?></a>
</article>
<?php endforeach; ?>
</div>
</section>
<section id="archive-pipeline" class="card foundation-panel">
<header class="entry-header">
<p class="eyebrow"><?php esc_html_e('Archive Pipeline', 'antichrist-engine'); ?></p>
<h2><?php echo esc_html($standards_copy['archive_title']); ?></h2>
<p><?php echo esc_html($standards_copy['archive_summary']); ?></p>
</header>
<div class="standards-protocol-grid">
<article class="card foundation-panel foundation-panel--compact standards-protocol-panel">
<p class="eyebrow"><?php esc_html_e('Publication Desk', 'antichrist-engine'); ?></p>
<h3><?php esc_html_e('Journal protocols', 'antichrist-engine'); ?></h3>
<ul class="foundation-list standards-protocol-list">
<?php foreach ($journal_protocols as $protocol) : ?>
<li>
<strong><?php echo esc_html($protocol['title']); ?></strong>
<span><?php echo esc_html($protocol['summary']); ?></span>
</li>
<?php endforeach; ?>
</ul>
<a class="text-link" href="<?php echo esc_url(antichrist_engine_foundation_get_page_url('journal')); ?>"><?php esc_html_e('Open the journal', 'antichrist-engine'); ?></a>
</article>
<article class="card foundation-panel foundation-panel--compact standards-protocol-panel">
<p class="eyebrow"><?php esc_html_e('Verification Threshold', 'antichrist-engine'); ?></p>
<h3><?php esc_html_e('Verified Research criteria', 'antichrist-engine'); ?></h3>
<ul class="foundation-list standards-protocol-list">
<?php foreach ($verified_protocols as $protocol) : ?>
<li>
<strong><?php echo esc_html($protocol['title']); ?></strong>
<span><?php echo esc_html($protocol['summary']); ?></span>
</li>
<?php endforeach; ?>
</ul>
<a class="text-link" href="<?php echo esc_url(add_query_arg('track', 'verified-research', antichrist_engine_foundation_get_page_url('journal'))); ?>"><?php esc_html_e('Open verified research', 'antichrist-engine'); ?></a>
</article>
</div>
</section>
<section id="ai-governance" class="card foundation-panel">
<header class="entry-header">
<p class="eyebrow"><?php esc_html_e('AI Governance', 'antichrist-engine'); ?></p>
<h2><?php echo esc_html($standards_copy['ai_title']); ?></h2>
<p><?php echo esc_html($standards_copy['ai_summary']); ?></p>
</header>
<div class="statement-grid">
<?php foreach ($ai_protocols as $protocol) : ?>
<article class="statement-card standards-ai-card">
<h3><?php echo esc_html($protocol['title']); ?></h3>
<p><?php echo esc_html($protocol['summary']); ?></p>
</article>
<?php endforeach; ?>
</div>
</section>
<section id="promotion-ladder" class="card foundation-panel">
<header class="entry-header">
<p class="eyebrow"><?php esc_html_e('Promotion Ladder', 'antichrist-engine'); ?></p>
<h2><?php echo esc_html($standards_copy['promotion_title']); ?></h2>
<p><?php echo esc_html($standards_copy['promotion_summary']); ?></p>
</header>
<div class="standards-promotion-grid">
<?php foreach ($promotion_ladder as $stage) : ?>
<article class="statement-card standards-stage-card">
<p class="eyebrow"><?php echo esc_html($stage['eyebrow']); ?></p>
<h3><?php echo esc_html($stage['title']); ?></h3>
<p><?php echo esc_html($stage['summary']); ?></p>
<p class="foundation-panel__subline"><?php echo esc_html($stage['note']); ?></p>
<div class="claim-card__actions">
<a class="text-link" href="<?php echo esc_url(antichrist_engine_foundation_build_target_url(
(string) ($stage['target'] ?? ''),
(array) ($stage['args'] ?? array()),
(string) ($stage['anchor'] ?? '')
)); ?>"><?php echo esc_html($stage['cta']); ?></a>
<?php if (!empty($stage['secondary_target']) && !empty($stage['secondary_cta'])) : ?>
<a class="text-link" href="<?php echo esc_url(antichrist_engine_foundation_build_target_url(
(string) $stage['secondary_target'],
(array) ($stage['secondary_args'] ?? array()),
(string) ($stage['secondary_anchor'] ?? '')
)); ?>"><?php echo esc_html($stage['secondary_cta']); ?></a>
<?php endif; ?>
</div>
</article>
<?php endforeach; ?>
</div>
</section>
<section id="review-cadence" class="card foundation-panel">
<header class="entry-header">
<p class="eyebrow"><?php esc_html_e('Review Cadence', 'antichrist-engine'); ?></p>
<h2><?php echo esc_html($standards_copy['review_title']); ?></h2>
<p><?php echo esc_html($standards_copy['review_summary']); ?></p>
</header>
<div class="statement-grid">