<?php get_header(); ?>

<section>
  <header>
    <h1><?php post_type_archive_title(); ?></h1>
  </header>

  <?php if ( have_posts() ) : ?>
    <div class="summary-posts">
      <?php while ( have_posts() ) : the_post(); ?>
        <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
          <header>
            <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
          </header>
          <div class="entry-summary">
            <?php the_excerpt(); ?>
          </div>
        </article>
      <?php endwhile; ?>
    </div>

    <?php the_posts_navigation(); ?>
  <?php else : ?>
    <p><?php _e('No summaries found.', 'textdomain'); ?></p>
  <?php endif; ?>
</section>

<?php get_footer(); ?>