Skip to content
wiki.fftac.org

FFTAC Who We Are Page

**Site relevance:** FFTAC.org

**Memory type:** theme source memory

**Source path:** FFTAC/wp-content/themes/fftac-who-we-are/page.php

**Size:** 1 KB

Summary

@package FFTAC Who We Are

Source Preview

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

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

get_header();
?>
<main id="primary" class="main">
	<?php
	while ( have_posts() ) :
		the_post();
		?>
		<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
			<header class="entry-header">
				<p class="archive-kicker"><?php esc_html_e( 'Page', 'fftac-who-we-are' ); ?></p>
				<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
			</header>

			<div class="entry-content">
				<?php
				the_content();
				wp_link_pages(
					array(
						'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'fftac-who-we-are' ),
						'after'  => '</div>',
					)
				);
				?>
			</div>

			<?php if ( get_edit_post_link() ) : ?>
				<footer class="entry-footer section narrow">
					<?php edit_post_link( esc_html__( 'Edit this page', 'fftac-who-we-are' ), '<span class="edit-link">', '</span>' ); ?>
				</footer>
			<?php endif; ?>
		</article>
		<?php
		if ( comments_open() || get_comments_number() ) {
			comments_template();
		}
	endwhile;
	?>
</main>
<?php
get_footer();