{% 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' %} {% else %} {# Regular event content for non-picture events #}
{% endif %} {% if nostrLinks is defined and nostrLinks|length > 0 %} {% endif %}
{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %}