layouts/theme/templates/partials/content.php
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<h2 class="entry-title"><?php the_title(); ?></h2>
</header>
<?php if ( is_search() ) : ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
<a href="<?php the_permalink(); ?>"><?php _e('Read more', '<%= project_id %>') ?></a>
</div>
<?php else : ?>
<div class="entry-content">
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', '<%= project_id %>' ) ); ?>
</div>
<?php endif; ?>
</div>