{% extends 'base.html.twig' %}
{% block title %}Nostr Event{% endblock %}
{% block body %}
{% if author %}
{% set author_pic = null %}
{% if author.picture is defined and author.picture %}
{% set author_pic = author.picture %}
{% elseif author.image is defined and author.image %}
{% set author_pic = author.image %}
{% endif %}
{% if author_pic %}
{% endif %}
{% if author.about is defined %}
{{ author.about|markdown_to_html|mentionify }}
{% endif %}
{% endif %}
{{ event.created_at|date('F j, Y - H:i') }}
{% set _ep_share = nostr_event_share(event) %}
{% if _ep_share %}{% include 'components/Molecules/NostrShareMenu.html.twig' with { share: _ep_share, event_menu: true } only %}{% endif %}
{% if nostrLinks is defined and nostrLinks|length > 0 %}