Single - Source Excerpt 02
Summary
This source excerpt preserves a bounded section of Anti-Christ.org/wp-content/themes/antichrist-engine/single.php so readers can inspect the evidence without opening the full source file.
**Source path:** Anti-Christ.org/wp-content/themes/antichrist-engine/single.php
<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 publication-sidebar-card">
<p class="eyebrow"><?php echo esc_html($publication_copy['role_label']); ?></p>
<h3><?php echo esc_html($release_profile['role_label']); ?></h3>
<p><?php echo esc_html($release_profile['role_summary']); ?></p>
<p class="research-card__meta"><strong><?php echo esc_html($publication_copy['best_use_label']); ?>:</strong> <?php echo esc_html($release_profile['best_use']); ?></p>
</article>
<article class="card foundation-panel foundation-panel--compact">
<p class="eyebrow"><?php esc_html_e('Publication Notice', 'antichrist-engine'); ?></p>
<p class="foundation-panel__subline"><?php echo esc_html($record_id); ?></p>
<p><?php echo esc_html($publication_copy['notice_body']); ?></p>
</article>
<?php if ($series && $series_slug) : ?>
<article class="card foundation-panel foundation-panel--compact">
<p class="eyebrow"><?php esc_html_e('Series Track', 'antichrist-engine'); ?></p>
<h3><?php echo esc_html($series['name']); ?></h3>
<p><?php echo esc_html($series['description']); ?></p>
<a class="text-link" href="<?php echo esc_url(add_query_arg('track', $series_slug, antichrist_engine_foundation_get_page_url('journal'))); ?>"><?php esc_html_e('View the full track', 'antichrist-engine'); ?></a>
</article>
<?php endif; ?>
<?php if (is_active_sidebar('sidebar-1')) : ?>
<div class="content-sidebar">
<?php dynamic_sidebar('sidebar-1'); ?>
</div>
<?php endif; ?>
</aside>
</div>
</section>
<?php endwhile; ?>
<?php
get_footer();