1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {% set id = [elements][0].content['#view_id'] %}
- <div class="container {{id}}">
- {% if id == 'programme'%}
- {{ title_prefix }}
- {% if label %}
- <h2{{ title_attributes }}>{{ label }}</h2>
- {% endif %}
- {% endif %}
- {{ title_suffix }}
- {% block content %}
- {{ content }}
- {% endblock %}
- </div>
|