Skip to content

Instantly share code, notes, and snippets.

@artlung
Last active January 6, 2026 15:48
Show Gist options
  • Select an option

  • Save artlung/806391615ae136f98ad08d6412157882 to your computer and use it in GitHub Desktop.

Select an option

Save artlung/806391615ae136f98ad08d6412157882 to your computer and use it in GitHub Desktop.
rsvp.html.twig
<div class="h-entry" id="{{ rsvp.id }}">
<p class="p-summary">
{% include 'rsvp_author_tag.html.twig' %}
RSVPs <span class="p-rsvp">{{ rsvp.yes_no_maybe }}</span>
to <a href="{{ event.url }}" class="u-in-reply-to">{{ event.name }}</a>
({{ event.date }})
</p>
<time class="dt-published" datetime="{{ rsvp.published_datetime }}"></time>
<a class="u-url" href="{{ rsvp.url }}"></a>
</div>
<a href="{{ author.url }}" class="p-author h-card u-url">
<span class="p-name">{{ author.name }}</span>
<img src="{{ author.avatar_url }}"
class="u-photo" alt=""
style="display: none;"
/>
</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment