1. <?php
  2. /*
  3. Template Name: Testimonials
  4. */
  5. ?>
  6.  
  7. <?php include('header.php'); ?>
  8.     <section id="content">
  9.         <article class="testimonial">
  10.             <section class="large-quote-wrapper">
  11.                 <section class="large-quote">
  12.                     <h2>"<?php the_title(); ?>"</h2>
  13.                 </section>
  14.             </section>
  15.             <section class="quote">
  16.                 <?php the_content(); ?>
  17.                 <p class="author">- <?=$testimonial_author?></p>
  18.             </section>
  19.         </article>
  20.     </section>
  21.    
  22. <?php include('footer.php'); ?>