diff --git a/templates/event/index.html.twig b/templates/event/index.html.twig index 4cd8012..6302514 100644 --- a/templates/event/index.html.twig +++ b/templates/event/index.html.twig @@ -81,10 +81,17 @@ {% endblock %} {% block body %} + {# Title from tags #} + {% set title = 'Untitled' %} + {% for tag in event.tags %} + {% if tag[0] == 'title' %} + {% set title = tag[1] %} + {% endif %} + {% endfor %}
-

{{ event.title ?? 'Untitled' }}

+

{{ title }}

{% if author %}
-
-

This is a work in progress. If your event didn't render right, we apologize. Working on it!

-
+
+
+

This is a work in progress. If your event didn't render right, we apologize. Working on it!

+
+
{% if nostrLinks is defined and nostrLinks|length > 0 %}