Skip to content
wiki.fftac.org

Template Full Width

**Site relevance:** Antichrist.net

**Memory type:** theme source memory

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

**Size:** 0.6 KB

Summary

Template Name: Full Width

Source Preview

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

<?php
/**
 * Template Name: Full Width
 * Template Post Type: page
 *
 * @package AntichristNet
 */
get_header();
?>
<main id="primary" class="site-main container page-layout full-width-template">
	<?php acn_breadcrumbs(); ?>
	<?php while ( have_posts() ) : the_post(); ?>
		<article <?php post_class( 'entry-shell' ); ?>>
			<header class="page-header">
				<p class="kicker"><?php esc_html_e( 'Antichrist.net', 'antichrist-net' ); ?></p>
				<h1><?php the_title(); ?></h1>
			</header>
			<div class="entry-content"><?php the_content(); ?></div>
		</article>
	<?php endwhile; ?>
</main>
<?php get_footer(); ?>