Skip to content
wiki.fftac.org

Twoia Intelligence Index

**Site relevance:** 2IA.org

**Memory type:** theme source memory

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

**Size:** 0.9 KB

Summary

while ( have posts() ) :

Source Preview

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

<?php
/**
 * Main blog index.
 *
 * @package TwoIA
 */

get_header();
?>
<section class="section section--archive">
	<header class="archive-header">
		<p class="eyebrow"><?php esc_html_e( 'Research', 'two-identities-anonymous' ); ?></p>
		<h1><?php esc_html_e( 'Latest briefings', 'two-identities-anonymous' ); ?></h1>
		<p><?php esc_html_e( 'Civil-liberties research on surveillance architecture, metadata, AI analysis, lawful oversight, and identity in networked life.', 'two-identities-anonymous' ); ?></p>
	</header>

	<?php if ( have_posts() ) : ?>
		<div class="grid grid--cards archive-grid">
			<?php
			while ( have_posts() ) :
				the_post();
				get_template_part( 'template-parts/content', 'card' );
			endwhile;
			?>
		</div>
		<?php twoia_posts_pagination(); ?>
	<?php else : ?>
		<?php get_template_part( 'template-parts/content', 'none' ); ?>
	<?php endif; ?>
</section>
<?php
get_footer();