6.37.2 Testimonial Double View in a new window

Image, name, course, position on the left and blurb on the right.

Twig: components/testimonial/testimonial-double-tile.twig

Example
Student

Katie Hindmarsh

Bachelor of Midwifery

Clinical Midwife, Sutheland hospital

I appreciate the course for opening my eyes to women’s health issues around the world.
Markup
<article class="testimonial--double">
  <div class="testimonial__student">
    <div class="testimonial__thumbnail">
      {% block image %}
        <img src="/themes/uts_theme/src/components/testimonial/katie-hindmarsh.jpg" alt="Student">
      {% endblock %}
    </div>
    {% block student %}
      <h1 class="testimonial__name">Katie Hindmarsh</h1>
      <div class="testimonial__course-name">Bachelor of Midwifery</div>
      <p class="testimonial__position">Clinical Midwife, Sutheland hospital</p>
    {% endblock %}
  </div>
  <div class="testimonial__blurb">
    {% block blurb %}
      <blockquote>I appreciate the course for opening my eyes to women’s health issues around the world.</blockquote>
    {% endblock %}
  </div>
</article>