Template Governance - Source Excerpt 02
Summary
This source excerpt preserves a bounded section of Anti-Christ.org/wp-content/themes/antichrist-engine/template-governance.php so readers can inspect the evidence without opening the full source file.
**Source path:** Anti-Christ.org/wp-content/themes/antichrist-engine/template-governance.php
<?php foreach ($quick_routes as $route) : ?>
<li><a href="<?php echo esc_url($resolve_governance_url($route)); ?>"><?php echo esc_html($route['label']); ?></a></li>
<?php endforeach; ?>
</ul>
</article>
<?php endif; ?>
<article class="card foundation-panel foundation-panel--compact">
<p class="eyebrow"><?php esc_html_e('Governance Stack', 'antichrist-engine'); ?></p>
<div class="governance-stack-grid">
<?php foreach ($governance_stack as $item) : ?>
<?php if (($item['page'] ?? '') === $page_key) : ?>
<?php continue; ?>
<?php endif; ?>
<a class="statement-card governance-stack-card" href="<?php echo esc_url(antichrist_engine_foundation_get_page_url($item['page'])); ?>">
<span class="eyebrow"><?php echo esc_html($item['eyebrow']); ?></span>
<strong><?php echo esc_html($item['title']); ?></strong>
<span><?php echo esc_html($item['summary']); ?></span>
</a>
<?php endforeach; ?>
</div>
</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 echo esc_html($governance_surface['notice'] ?? ''); ?></p>
</article>
</aside>
</div>
</section>
<?php
get_footer();