Template Research - Source Excerpt 14
Summary
This source excerpt preserves a bounded section of Anti-Christ.org/wp-content/themes/antichrist-engine/template-research.php so readers can inspect the evidence without opening the full source file.
**Source path:** Anti-Christ.org/wp-content/themes/antichrist-engine/template-research.php
<?php foreach ($question['options'] as $option_index => $option) : ?>
<label class="research-quiz__option" for="<?php echo esc_attr('research-quiz-' . $index . '-' . $option_index); ?>">
<input
id="<?php echo esc_attr('research-quiz-' . $index . '-' . $option_index); ?>"
type="radio"
name="<?php echo esc_attr('research_quiz_' . $index); ?>"
value="<?php echo esc_attr($option['framework']); ?>"
data-framework="<?php echo esc_attr($option['framework']); ?>"
>
<span><?php echo esc_html($option['label']); ?></span>
</label>
<?php endforeach; ?>
</div>
</fieldset>
<?php endforeach; ?>
<div class="hero__actions">
<button type="submit" class="button"><?php esc_html_e('Show My Dominant Lens', 'antichrist-engine'); ?></button>
<p class="membership-form__hint"><?php esc_html_e('A mixed result is often a sign of healthy complexity.', 'antichrist-engine'); ?></p>
</div>
</form>
<div class="research-quiz__result" hidden data-quiz-result>
<?php foreach ($quiz['profiles'] as $key => $profile) : ?>
<article class="research-quiz__profile" hidden data-framework-result="<?php echo esc_attr($key); ?>">
<p class="eyebrow"><?php esc_html_e('Current Lens', 'antichrist-engine'); ?></p>
<h3><?php echo esc_html($profile['title']); ?></h3>
<p><?php echo esc_html($profile['summary']); ?></p>
<p class="research-quiz__next"><?php echo esc_html($profile['next_step']); ?></p>
</article>
<?php endforeach; ?>
<p class="research-quiz__message" hidden data-quiz-message></p>
</div>
</section>
<section id="contemporary-signals" class="card foundation-panel">
<header class="entry-header">
<p class="eyebrow"><?php esc_html_e('Contemporary Signals', 'antichrist-engine'); ?></p>
<h2><?php esc_html_e('Where old apocalyptic language meets current systems', 'antichrist-engine'); ?></h2>
</header>
<div class="research-signal-grid">
<?php foreach ($signals as $signal) : ?>
<article class="statement-card research-signal-card">
<p class="eyebrow"><?php echo esc_html($signal['eyebrow']); ?></p>
<h3><?php echo esc_html($signal['title']); ?></h3>
<p><?php echo esc_html($signal['summary']); ?></p>
<a class="text-link" href="<?php echo esc_url(antichrist_engine_foundation_get_page_url($signal['page'])); ?>"><?php echo esc_html($signal['cta']); ?></a>
</article>
<?php endforeach; ?>
</div>
</section>
<article class="card foundation-cta">
<p class="eyebrow"><?php esc_html_e('Next Move', 'antichrist-engine'); ?></p>
<h2><?php esc_html_e('Take the research into publication, inquiry, or participation', 'antichrist-engine'); ?></h2>
<p><?php esc_html_e('The atlas is the map. The journal tests ideas in public, the AI engine pressures assumptions, and the membership layer supports slower contribution and study.', 'antichrist-engine'); ?></p>
<div class="hero__actions">
<a class="button" href="<?php echo esc_url(antichrist_engine_foundation_get_page_url('journal')); ?>"><?php esc_html_e('Read the Journal', 'antichrist-engine'); ?></a>
<a class="button button--ghost" href="<?php echo esc_url(antichrist_engine_foundation_get_page_url('ai_engine')); ?>"><?php esc_html_e('Use the AI Engine', 'antichrist-engine'); ?></a>
<a class="button button--ghost" href="<?php echo esc_url(antichrist_engine_foundation_build_target_url('join', array(), 'program-intake')); ?>"><?php esc_html_e('Join a Cohort or Summit', 'antichrist-engine'); ?></a>
<a class="button button--ghost" href="<?php echo esc_url(antichrist_engine_foundation_get_target_url('membership_portal')); ?>"><?php esc_html_e('Enter the Portal', 'antichrist-engine'); ?></a>
</div>
</article>
</div>
</div>
</section>
<?php
get_footer();