need to run : drush ev 'drupal_flush_all_caches();' drush cr and restart nginx and php-fpm before loading the website
21 lines
449 B
Twig
21 lines
449 B
Twig
{#
|
|
/**
|
|
* @file composition.html.twig
|
|
* Default theme implementation to present Composition data.
|
|
*
|
|
* This template is used when viewing Composition 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_composition()
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
#}
|
|
<div{{ attributes }}>
|
|
{{ content }}
|
|
</div>
|