{% extends 'layout.html.twig' %} {% block title %}Nostr Event{% endblock %} {% block body %}
{% if author %} {% if author.image is defined %} {{ author.name }} {% endif %}
{% endif %}
{{ event.created_at|date('F j, Y - H:i') }}
{# NIP-68 Picture Event (kind 20) #} {% if event.kind == 20 %} {% include 'event/_kind20_picture.html.twig' %} {# NIP-71 Video Events (kind 21 and 22) #} {% elseif event.kind == 21 or event.kind == 22 %} {% include 'event/_kind22_video.html.twig' %} {% else %} {# Regular event content for non-picture and non-video events #}
{% endif %} {% if nostrLinks is defined and nostrLinks|length > 0 %} {% endif %}
{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %}