Template Philosophy - Source Excerpt 02
Summary
This source excerpt preserves a bounded section of Anti-Christ.org/wp-content/themes/antichrist-engine/template-philosophy.php so readers can inspect the evidence without opening the full source file.
**Source path:** Anti-Christ.org/wp-content/themes/antichrist-engine/template-philosophy.php
<article class="card foundation-panel">
<p class="eyebrow"><?php esc_html_e('Moral Method', 'antichrist-engine'); ?></p>
<h2><?php esc_html_e('A transparent ethic, not a hidden command', 'antichrist-engine'); ?></h2>
<p><?php esc_html_e('Public judgment begins with dignity, truth, freedom, repair, and responsibility. These questions keep moral claims accountable.', 'antichrist-engine'); ?></p>
<ul class="foundation-list">
<?php foreach ($method_questions as $question) : ?>
<li><?php echo esc_html($question); ?></li>
<?php endforeach; ?>
</ul>
</article>
<article class="card foundation-panel">
<p class="eyebrow"><?php esc_html_e('Voice Test', 'antichrist-engine'); ?></p>
<h2><?php esc_html_e('The copy should make clear thinking easier', 'antichrist-engine'); ?></h2>
<div class="philosophy-voice-list">
<?php foreach ($voice_standards as $standard) : ?>
<section class="philosophy-voice-item">
<h3><?php echo esc_html($standard['title']); ?></h3>
<p><?php echo esc_html($standard['summary']); ?></p>
</section>
<?php endforeach; ?>
</div>
</article>
</section>
<section id="foundation-pillars" class="foundation-pillar-grid">
<?php foreach ($pillars as $key => $pillar) : ?>
<article class="card foundation-panel foundation-pillar-card">
<p class="eyebrow"><?php esc_html_e('Pillar', 'antichrist-engine'); ?></p>
<h2><?php echo esc_html($pillar['title']); ?></h2>
<p><?php echo esc_html($pillar['summary']); ?></p>
<p class="foundation-muted"><?php echo esc_html($pillar['teaser']); ?></p>
<a class="text-link" href="<?php echo esc_url(antichrist_engine_foundation_get_page_url('pillar_' . $key)); ?>"><?php esc_html_e('Read the essay', 'antichrist-engine'); ?></a>
</article>
<?php endforeach; ?>
</section>
</div>
</div>
</section>
<?php
get_footer();