Skip to content
wiki.fftac.org

Twoia Intelligence Template Parts Content

**Site relevance:** 2IA.org

**Memory type:** theme source memory

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

**Size:** 0.6 KB

Summary

Default content template.

Source Preview

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

<?php
/**
 * Default content template.
 *
 * @package TwoIA
 */
?>
<article id="post-<?php the_ID(); ?>" <?php post_class( 'briefing-list-item' ); ?>>
	<header class="entry-header">
		<?php twoia_post_categories(); ?>
		<h2 class="entry-title"><a href="<?php echo esc_url( get_permalink() ); ?>"><?php echo esc_html( get_the_title() ); ?></a></h2>
		<?php twoia_post_meta(); ?>
	</header>
	<div class="entry-summary">
		<?php echo wp_kses_post( get_the_excerpt() ); ?>
	</div>
	<a class="read-more" href="<?php echo esc_url( get_permalink() ); ?>"><?php esc_html_e( 'Read briefing', 'two-identities-anonymous' ); ?></a>
</article>