<div class=“webmentions webmentions–reposts”>

{% if webmentions.size > 0 %}
  <ol class="webmentions__list">
    {% for webmention in webmentions %}
      <li id="webmention-{{ webmention.id }}" class="webmentions__item webmention webmention--{{ webmention.type }}">
        <div class="webmention__author p-author h-card">
          <a class="u-url" href="{{ webmention.author.url }}" rel="nofollow">
            <img class="webmention__author__photo u-photo" src="{{ webmention.author.photo }}" alt="" title="{{ webmention.author.name }}">
          </a>
        </div>
      </li>
    {% endfor %}
  </ol>
{% else %}
  <p class="webmentions__not-found">No reposts were found.</p>
{% endif %}

</div>