Skip to content
wiki.fftac.org

Twoia Intelligence Page

**Site relevance:** 2IA.org

**Memory type:** theme source memory

**Source path:** 2IA.org/wp-content/themes/twoia-intelligence/page.php

**Size:** 0.3 KB

Summary

while ( have posts() ) :

Source Preview

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

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

get_header();
?>
<section class="section section--page">
	<?php
	while ( have_posts() ) :
		the_post();
		get_template_part( 'template-parts/content', 'page' );
	endwhile;
	?>
</section>
<?php
get_footer();