recurring_events-2.0.x-dev/templates/eventseries.html.twig
templates/eventseries.html.twig
{#
/**
* @file
* Theme override to display an eventseries.
*
* Available variables:
* - label: The title of the event.
* - content: All eventinstance items. Use {{ content }} to print them all,
* or print a subset such as {{ content.field_example }}. Use
* {{ content|without('field_example') }} to temporarily suppress the printing
* of a given child element.
* - metadata: Metadata for this eventinstance.
* - attributes: HTML attributes for the containing element.
* The attributes.class element may contain one or more classes.
* - content_attributes: Same as attributes, except applied to the main
* content tag that appears in the template.
* - author_attributes: Same as attributes, except applied to the author of
* the node tag that appears in the template.
* - title_prefix: Additional output populated by modules, intended to be
* displayed in front of the main title tag that appears in the template.
* - title_suffix: Additional output populated by modules, intended to be
* displayed after the main title tag that appears in the template.
* - view_mode: View mode; for example, "teaser" or "full".
* - page: Flag for the full page state. Will be true if view_mode is 'full'.
* - readmore: Flag for more state. Will be true if the teaser content of the
* node cannot hold the main body content.
* - logged_in: Flag for authenticated user status. Will be true when the
* current user is a logged-in member.
* - is_admin: Flag for admin user status. Will be true when the current user
* is an administrator.
*
* @see template_preprocess_node()
*/
#}
{% set modifier_class = attributes.class %}
{% set attributes = attributes.removeAttribute('class') %}
{% block content %}
{{ content }}
{% endblock %}