Skip to content
wiki.fftac.org

Template Community

**Site relevance:** Antichrist.net

**Memory type:** theme source memory

**Source path:** Antichrist.net/wp-content/themes/antichrist-net/templates/template-community.php

**Size:** 0.8 KB

Summary

Template Name: Community / Message Board

Source Preview

This source file is short enough to preview directly on its source-memory page.

<?php
/**
 * Template Name: Community / Message Board
 * Template Post Type: page
 *
 * @package AntichristNet
 */
get_header();
?>
<main id="primary" class="site-main container page-layout community-template">
	<?php acn_breadcrumbs(); ?>
	<?php while ( have_posts() ) : the_post(); ?>
		<header class="page-header narrow">
			<p class="kicker"><?php esc_html_e( 'Community', 'antichrist-net' ); ?></p>
			<h1><?php the_title(); ?></h1>
			<p><?php esc_html_e( 'A moderated message board for archive questions, theology, research notes, and site help.', 'antichrist-net' ); ?></p>
		</header>
		<div class="entry-content narrow"><?php the_content(); ?></div>
		<section class="section-band">
			<?php echo do_shortcode( '[acn_message_board]' ); ?>
		</section>
	<?php endwhile; ?>
</main>
<?php get_footer(); ?>