{% if item.author.length > 0 %}
  <h3 class="item__sub-heading">Author{% if item.author.length > 1 %}s{% endif %}</h3>

  <ul class="list-unstyled">
    {% for author in item.author %}
      <li>{{ author|safe }}</li>
    {% endfor %}
  </ul>
{% endif %}
