Skip to content
wiki.fftac.org

Template Member Record

**Site relevance:** Anti-Christ.net

**Memory type:** theme source memory

**Source path:** Anti-Christ.net/wp-content/themes/anti-christ-thin-veil/page-templates/template-member-record.php

**Size:** 1 KB

Summary

Template Name: Member Record

Source Preview

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

<?php
/**
 * Template Name: Member Record
 * Template Post Type: page
 *
 * @package Anti_Christ_Thin_Veil
 */

get_header();
?>
<main id="primary" class="site-main">
	<section class="page-hero">
		<p class="section-label"><?php esc_html_e( 'Private Roster Record', 'anti-christ-thin-veil' ); ?></p>
		<h1><?php esc_html_e( 'Your roster record belongs behind a private link.', 'anti-christ-thin-veil' ); ?></h1>
		<p class="archive-lead"><?php esc_html_e( 'This page is wired for the Participants Database record form and expects the private identifier from the email link. It is age-gated and does not expose a public member directory.', 'anti-christ-thin-veil' ); ?></p>
	</section>
	<?php echo actv_member_flash(); ?>
	<?php echo actv_render_member_record_panel(); ?>
	<?php
	while ( have_posts() ) :
		the_post();
		if ( trim( wp_strip_all_tags( get_the_content() ) ) ) {
			get_template_part( 'template-parts/content', 'page' );
		}
	endwhile;
	?>
</main>
<?php
get_footer();