Skip to content
wiki.fftac.org

Virtual Pages - Source Excerpt 98

Back to Virtual Pages

Summary

This source excerpt preserves a bounded section of 2IA.org/wp-content/themes/twoia-intelligence/inc/virtual-pages.php so readers can inspect the evidence without opening the full source file.

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

<section class="section section--compact">
		<header class="section-header">
			<p class="eyebrow"><?php esc_html_e( 'Latest briefings', 'two-identities-anonymous' ); ?></p>
			<h2><?php esc_html_e( 'Published research', 'two-identities-anonymous' ); ?></h2>
		</header>
		<?php if ( $recent_posts ) : ?>
			<div class="grid grid--cards">
				<?php
				foreach ( $recent_posts as $post ) :
					setup_postdata( $post );
					get_template_part( 'template-parts/content', 'card' );
				endforeach;
				wp_reset_postdata();
				?>
			</div>
		<?php else : ?>
			<p><?php esc_html_e( 'No briefings have been published yet. The archive will populate as research posts are reviewed and released.', 'two-identities-anonymous' ); ?></p>
		<?php endif; ?>
	</section>
	<?php
}