diff --git a/patterns/molecules/agenda-box/agenda-box.html.twig b/patterns/molecules/agenda-box/agenda-box.html.twig index 3e5ba74e06a0dd035d1d85b17ae27f2793f8b158..1ea65f3e0ee022324ab96f7f0236095825230aba 100644 --- a/patterns/molecules/agenda-box/agenda-box.html.twig +++ b/patterns/molecules/agenda-box/agenda-box.html.twig @@ -89,21 +89,14 @@ {% endif %} {# Content Type field #} - {% if content_type | render %} - {% set ct = '' %} - {% if content_type | render | striptags | trim == "Event Page" %} - {% set ct = 'Event' %} - {% endif %} - {% if content_type | render | striptags | trim == "Indico Event" %} - {% set ct = 'Event' %} - {% endif %} - {% if content_type | render | striptags | trim == "Webcast Event" %} - {% set ct = 'Webcast' %} - {% endif %} - <div class="agenda-box-content-type"> - {{ ct|t }} - </div> - {% endif %} + {# Initializes content_type with word "Event"#} + {% set ct = 'Event' %} + {% if content_type | render | striptags | trim == "Webcast Event" %} + {% set ct = 'Webcast' %} + {% endif %} + <div class="agenda-box-content-type"> + {{ ct|t }} + </div> {# Place field #} {% if place | render %}