bat_event_series.html.twig in Booking and Availability Management Tools for Drupal 8
bat_event.html.twig Default theme implementation to present Event data.
This template is used when viewing Event pages.
Available variables:
- content: A list of content items. Use 'content' to print all content, or
- attributes: HTML attributes for the container element.
See also
File
modules/bat_event_series/templates/bat_event_series.html.twigView source
- {#
- /**
- * @file bat_event.html.twig
- * Default theme implementation to present Event data.
- *
- * This template is used when viewing Event pages.
- *
- *
- * Available variables:
- * - content: A list of content items. Use 'content' to print all content, or
- * - attributes: HTML attributes for the container element.
- *
- * @see template_preprocess_bat_event_series()
- *
- * @ingroup themeable
- */
- #}
- <div{{ attributes.addClass('event-series') }}>
- {% if content %}
- {{- content -}}
- {% endif %}
- </div>