diff --git a/templates/partials/event_item.html.twig b/templates/partials/event_item.html.twig deleted file mode 100644 index 8a9976f..0000000 --- a/templates/partials/event_item.html.twig +++ /dev/null @@ -1,62 +0,0 @@ -
-
- {% set image = page.media.images|first %} - {% if image != null %} - {{ image.cropZoom(960,280).html }} - {% endif %} -
- -
-
{# date and time #} - {% if single == true %} {# individual content page #} - {% else %} {# main listing page #} - - {% endif %} -
- -
{# title and content #} - {% if single == true %} {# individual content page #} - {% if (config.plugins.events.event_meta.display_location) and (page.header.event.location is not empty) %} -

{{ page.header.event.location }}

- {% endif %} - {% if page.content %} -
{{ page.content|raw }}
- {% else %} - {{ "PLUGIN_EVENTS.EVENTS.NO_MORE_INFORMATION"|t }} - {% endif %} - {% include 'partials/event_meta.html.twig' with { 'page': page } %} - - {% else %} {# main listing page #} -{# {% if page.content %} #} -

{{ page.title }}

-{#} {% else %} -

{{ page.title }}

- {% endif %} #} - {% if (config.plugins.events.event_meta.display_location) and (page.header.event.location is not empty) %} -

{{ page.header.event.location }}

- {% endif %} - {% if page.content %} - {{ "PLUGIN_EVENTS.EVENTS.MORE_INFORMATION"|t }} - {% endif %} - {% endif %} - - {% if page.taxonomy.category and config.plugins.events.event_sidebar.enable_categories %} -
- - {% for category in page.taxonomy.category %} - {{ category }} - {% endfor %} - -
- {% endif %} -
-
-
-