12345678910111213141516171819202122 |
- {#
- /**
- * @file chutier.html.twig
- * Default theme implementation to present Chutier data.
- *
- * This template is used when viewing Chutier 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_chutier()
- *
- * @ingroup themeable
- */
- #}
- <div{{ attributes.addClass('chutier') }}>
- {% if content %}
- {{- content -}}
- {% endif %}
- </div>
|