Template Research - Source Excerpt 05
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
<span><?php esc_html_e('Source Trail', 'antichrist-engine'); ?></span>
<strong><?php echo esc_html(number_format_i18n((int) ($active_record['source_count'] ?? 0))); ?></strong>
<p><?php esc_html_e('Current source records attached to the parent claim dossier.', 'antichrist-engine'); ?></p>
</article>
</div>
<div class="statement-grid research-record-focus__grid">
<article class="statement-card research-record-focus__panel">
<p class="eyebrow"><?php esc_html_e('Claim Summary', 'antichrist-engine'); ?></p>
<p><?php echo esc_html($active_record['claim_summary']); ?></p>
</article>
<article class="statement-card research-record-focus__panel">
<p class="eyebrow"><?php esc_html_e('Raised By', 'antichrist-engine'); ?></p>
<p><?php echo esc_html($active_record['source']); ?></p>
</article>
<article class="statement-card research-record-focus__panel">
<p class="eyebrow"><?php esc_html_e('Current Verdict', 'antichrist-engine'); ?></p>
<p><?php echo esc_html($active_record['claim_verdict_label'] ?: __('Unspecified', 'antichrist-engine')); ?></p>
</article>
</div>
<?php if (!empty($active_record['source_references'])) : ?>
<div class="research-record-focus__stack">
<p class="eyebrow"><?php esc_html_e('Source Trail', 'antichrist-engine'); ?></p>
<div class="research-record-focus__links">
<?php foreach ($active_record['source_references'] as $source_reference) : ?>
<a class="claim-related-link" href="<?php echo esc_url($source_reference['record_url']); ?>">
<strong><?php echo esc_html($source_reference['record_id']); ?></strong>
<span><?php echo esc_html($source_reference['publisher'] . ' / ' . $source_reference['title']); ?></span>
</a>
<?php endforeach; ?>
</div>
</div>
<?php endif; ?>
<?php elseif ('source' === ($active_record['record_type'] ?? '')) : ?>
<div class="publication-stat-grid research-record-focus__stats">
<article class="publication-stat-card statement-card">
<span><?php esc_html_e('Publisher', 'antichrist-engine'); ?></span>
<strong><?php echo esc_html($active_record['publisher']); ?></strong>
<p><?php esc_html_e('The source’s current publisher or issuing body.', 'antichrist-engine'); ?></p>
</article>
<article class="publication-stat-card statement-card">
<span><?php esc_html_e('Library Group', 'antichrist-engine'); ?></span>
<strong><?php echo esc_html($active_record['group']); ?></strong>
<p><?php esc_html_e('Where this source currently lives inside the public source library.', 'antichrist-engine'); ?></p>
</article>
<article class="publication-stat-card statement-card">
<span><?php esc_html_e('Citation Count', 'antichrist-engine'); ?></span>
<strong><?php echo esc_html(number_format_i18n((int) ($active_record['citation_count'] ?? 0))); ?></strong>
<p><?php esc_html_e('Claim dossiers that currently cite this source record.', 'antichrist-engine'); ?></p>
</article>
</div>
<article class="statement-card research-record-focus__panel">
<p class="eyebrow"><?php esc_html_e('Research Note', 'antichrist-engine'); ?></p>
<p><?php echo esc_html($active_record['note']); ?></p>
</article>
<?php if (!empty($active_record['claim_references'])) : ?>
<div class="research-record-focus__stack">
<p class="eyebrow"><?php esc_html_e('Citing Dossiers', 'antichrist-engine'); ?></p>
<div class="research-record-focus__links">
<?php foreach ($active_record['claim_references'] as $claim_reference) : ?>
<a class="claim-related-link" href="<?php echo esc_url($claim_reference['record_url']); ?>">
<strong><?php echo esc_html($claim_reference['record_id']); ?></strong>
<span><?php echo esc_html($claim_reference['title']); ?></span>
</a>
<?php endforeach; ?>
</div>
</div>
<?php endif; ?>
<?php elseif ('timeline' === ($active_record['record_type'] ?? '')) : ?>
<div class="publication-stat-grid research-record-focus__stats">
<article class="publication-stat-card statement-card">
<span><?php esc_html_e('Year', 'antichrist-engine'); ?></span>
<strong><?php echo esc_html($active_record['year']); ?></strong>
<p><?php esc_html_e('The chronology marker currently used in the atlas.', 'antichrist-engine'); ?></p>
</article>
<article class="publication-stat-card statement-card">
<span><?php esc_html_e('Lane', 'antichrist-engine'); ?></span>
<strong><?php echo esc_html($timeline_labels[$active_record['category']] ?? ucwords(str_replace('-', ' ', (string) ($active_record['category'] ?? '')))); ?></strong>
<p><?php esc_html_e('The timeline lane this entry currently belongs to.', 'antichrist-engine'); ?></p>
</article>
<article class="publication-stat-card statement-card">
<span><?php esc_html_e('Tag Count', 'antichrist-engine'); ?></span>
<strong><?php echo esc_html(number_format_i18n((int) ($active_record['tag_count'] ?? 0))); ?></strong>
<p><?php esc_html_e('Tags currently attached for chronology scanning and search recall.', 'antichrist-engine'); ?></p>
</article>
</div>
<?php if (!empty($active_record['tags'])) : ?>
<div class="tag-list">
<?php foreach ($active_record['tags'] as $tag) : ?>
<span class="tag-pill"><?php echo esc_html($tag); ?></span>
<?php endforeach; ?>
</div>
<?php endif; ?>
<?php elseif ('briefing' === ($active_record['record_type'] ?? '')) : ?>
<div class="publication-stat-grid research-record-focus__stats">
<article class="publication-stat-card statement-card">
<span><?php esc_html_e('Duration', 'antichrist-engine'); ?></span>
<strong><?php echo esc_html($active_record['duration']); ?></strong>
<p><?php esc_html_e('Reading/listening estimate for the current executive briefing.', 'antichrist-engine'); ?></p>
</article>