<div class=“webmentions webmentions–rsvps”>

{% 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="Avatar for {{ webmention.author.name }}" title="{{ webmention.author.name }}">
            <b class="p-name">{{ webmention.author.name }}</b>
            {{ webmention.content }}
          </a>
        </div>
      </li>
    {% endfor %}
  </ol>
{% else %}
  <p class="webmentions__not-found">No RSVPs were found.</p>
{% endif %}

</div>