Template Submit Dispatch
**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-submit-dispatch.php
**Size:** 1 KB
Summary
Template Name: Submit Dispatch
Source Preview
This source file is short enough to preview directly on its source-memory page.
<?php
/**
* Template Name: Submit Dispatch
* 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( 'Submit Dispatch', 'anti-christ-thin-veil' ); ?></p>
<h1><?php esc_html_e( 'Post from the front door. Publish only after review.', 'anti-christ-thin-veil' ); ?></h1>
<p class="archive-lead"><?php esc_html_e( 'Logged-in adult members can send lawful civic writing into the WordPress editorial queue. Dispatches save as pending posts so editors can verify claims, redact private data, and reject unsafe material.', 'anti-christ-thin-veil' ); ?></p>
</section>
<?php echo actv_member_flash(); ?>
<?php echo actv_render_submit_dispatch_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();