Files
edlp_d8/web/modules/custom/edlp_studio/templates/chutier.html.twig
T
bachir 9da6cf9927 reinstalled all contribs with composer
need to run :
drush ev 'drupal_flush_all_caches();'
drush cr
and restart nginx and php-fpm before loading the website
2019-04-30 19:27:47 +02:00

23 lines
490 B
Twig

{#
/**
* @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>