Skip to content
wiki.fftac.org

Anti Christ Thin Veil Page

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

**Memory type:** theme source memory

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

**Size:** 0.7 KB

Summary

@package Anti Christ Thin Veil

Source Preview

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

<?php
/**
 * Page template.
 *
 * @package Anti_Christ_Thin_Veil
 */

get_header();
?>
<main id="primary" class="site-main entry-shell">
	<?php
	while ( have_posts() ) :
		the_post();
		?>
		<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
			<header class="page-hero">
				<p class="section-label"><?php esc_html_e( 'Page', 'anti-christ-thin-veil' ); ?></p>
				<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
			</header>
			<div class="entry-content">
				<?php the_content(); ?>
				<?php
				wp_link_pages(
					array(
						'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'anti-christ-thin-veil' ),
						'after'  => '</div>',
					)
				);
				?>
			</div>
		</article>
		<?php
	endwhile;
	?>
</main>
<?php
get_footer();