{% if page.contentType == 'article' and page.content %}
  {% for entry in page.content %}
    <div>
      <h2 class="p1-subHeading">{{ entry.title }}</h2>
      {% for paragraph in entry.content %}
        <p>{{ paragraph }}</p>
      {% endfor %}
    </div>
  {% endfor %}
{% endif %}
