Single Acn Thread
**Site relevance:** Antichrist.net
**Memory type:** theme source memory
**Source path:** Antichrist.net/wp-content/themes/antichrist-net/single-acn_thread.php
**Size:** 1 KB
Summary
Message board thread template.
Source Preview
This source file is short enough to preview directly on its source-memory page.
<?php
/**
* Message board thread template.
*
* @package AntichristNet
*/
get_header();
?>
<main id="primary" class="site-main container single-layout board-thread-layout">
<?php acn_breadcrumbs(); ?>
<?php while ( have_posts() ) : the_post(); ?>
<article <?php post_class( 'entry-shell thread-shell' ); ?>>
<header class="page-header narrow">
<p class="kicker"><?php esc_html_e( 'Message Board Thread', 'antichrist-net' ); ?></p>
<h1><?php the_title(); ?></h1>
<?php acn_entry_meta(); ?>
<div class="thread-taxonomy">
<?php echo get_the_term_list( get_the_ID(), 'acn_forum', '<span class="badge-list">', ' ', '</span>' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
</div>
</header>
<div class="entry-content narrow">
<?php the_content(); ?>
</div>
</article>
<div class="narrow comments-wrap board-replies">
<?php comments_template(); ?>
</div>
<?php endwhile; ?>
</main>
<?php get_footer(); ?>