{% 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') }}
{% if nostrLinks is defined and nostrLinks|length > 0 %}